I want to either retrieve the table row Index or any other paramter by using the Display Key [IDX]
Example:
What is the Index value when the Display Key [IDX] equals "Processor B: Program 1: Audio Channel 8"?
Or:
What is the Channel Gain when the Display Key [IDX] equals "Processor B: Program 3: Audio Channel 15"?
I want to use this type of syntax to display the result on a Visio:
[param:128702/12578,????, ????]What is the correct syntax to do this?
Hi Peter,
The information can be found in our docs:
https://docs.dataminer.services/user-guide/Basic_Functionality/Visio/reference/Placeholders_for_variables_in_shape_data_values.html#paramdmaidelementidparameteridtablerow
You can put this placeholder as text on your shape.
For example, could look like this:
[param:128702/12578,1002,*Program 3*Channel 15*]
As your display text contains the ':' it will cause issues as the SW splits on it for the Param:
You can also replace the ':' separator with another one to workaround this problem:
[Sep::$][param$128702/12578,1002,Processor B: Program 3: Audio Channel 15]
Thanks Michiel.
That was exacty the answer I was looking for.