Hello,
I want to make a visualization of data relative to a single record.
Example:
ID | Some info | More info | A | B | C |
---|---|---|---|---|---|
1 | asnmdklñfakl | mkñlzcm,v.mzx | 5 | 3 | 4 |
2 | qewirpo,po | ,.czx-vop | 6 | 2 | 3 |
3 | zmcvklzmm | jipjafiojdsfioj | 8 | 3 | 5 |
The objective is to visualize the values of A,B and C on a bar chart ONLY when a single record is selected.
I've been looking around, but can't find usefull entries.
Thanks,
Roger
Two option... use The Crosstable Load to convert A, B, C from columns to a single field.... or use three expressions... one each for A, B, & C
May be use a condition to display the chart
GetSelectedCount(ID) = 1
Thanks!
And then, how to display A,B and C values on a chart? I mean, i don't have a dimension Type={A,B,C}
Two option... use The Crosstable Load to convert A, B, C from columns to a single field.... or use three expressions... one each for A, B, & C
Thanks for your response Sunny!
Thats what i was looking for