Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I'd like to use table chart.
How do I extract a specific row of data? Any examples would be helpful.
I could make it. Thank you so much!
Sorry, one more question.
If I choose 2 or 3 row numbers, the data from that rows will display on the text object?
I tried , but nothing display on the text object.
The condition If(GetSelectedCount(RowNoFieldName)=1, makes it only work when there is only one value selected.
You can change it to something like:
If(GetPossibleCount(RowNoFieldName)<=10, Concat(Aggr([YourExpressionToShowData], RowNoFieldName), ' '))
GetPossibleCount to limit the number of rows selected to 10.
Concat to magre the different strings in one
Aggr to do the expression for each row selcted
Thank you so much!! I could make it.
I appreciate for your kindness.