Hi,
I am using Infinity datasource. I have a Variable named “Domain”. Which has multiple values,
I am trying to call columns based on values selected in “Domain”.
When 1 value is selected, it works right. But when two values are selected, instead of calling 2 columns, it adds both selected variable into 1 word and trys to call wrong column.
parse-csv
| project "${Domain}
This is the code I am using. When I select value “Value1”, it calls correctly “Value1” column. But when I select “Value1 and Value2” in “Domain” it calls “{Value1,Value2}” instead of calling “Value1” and “Value2” column separately.
Also tried,
parse-csv
| project “${Domain:doublequote}”
What is the correct way to do this?
Best Ragards,
Rithesh