a cell with several rate
h_kh_blue
New Altair Community Member
hi, help me please,
i have a big problem with attributes which have several rate in a cell,
my data is text, and these rate separate by Como","
how can i say that separate these rate???
help me please sooon
thanks
i have a big problem with attributes which have several rate in a cell,
my data is text, and these rate separate by Como","
how can i say that separate these rate???
help me please sooon
thanks
Tagged:
0
Answers
-
Hi,
you can use the Split Operator:
Best,
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<process version="5.2.008">
<context>
<input/>
<output/>
<macros/>
</context>
<operator activated="true" class="process" compatibility="5.2.008" expanded="true" name="Process">
<process expanded="true" height="509" width="942">
<operator activated="true" class="generate_data_user_specification" compatibility="5.2.008" expanded="true" height="60" name="Generate Data by User Specification" width="90" x="112" y="165">
<list key="attribute_values">
<parameter key="attr1" value=""a,b,c""/>
</list>
<list key="set_additional_roles"/>
</operator>
<operator activated="true" class="split" compatibility="5.2.008" expanded="true" height="76" name="Split" width="90" x="313" y="165"/>
<connect from_op="Generate Data by User Specification" from_port="output" to_op="Split" to_port="example set input"/>
<connect from_op="Split" from_port="example set output" to_port="result 1"/>
<portSpacing port="source_input 1" spacing="0"/>
<portSpacing port="sink_result 1" spacing="0"/>
<portSpacing port="sink_result 2" spacing="0"/>
</process>
</operator>
</process>
Nils0