Forum Discussion
Display my data values on a graph without calculated functions like sum, count etc
Thanks a lot for your response, when I have created a measure on the column. it gives the following error.
Are you using a table or Matrix visualization?.
In that case you need a little modification to the measure.
mymeasure=IF(HASONEVALUE(Table[Column]),VALUES(Table[Column]))
- irfanreporting9 years ago
Helper I
Thank you for the quick response. I am using a table of "x" columns and displaying a graph for 2 columns with the same values as displayed in the table.
for ex: In my case, I have lists of ID's and for each ID have some already aggregated data i.e requests/secs from the database table so I just want to display those ID's on X-axis and individual bars with corresponding requests/secs values upon each ID bar.
- irfanreporting9 years ago
Helper I
Is this possible? Can you please help?- Vvelarde9 years ago
Community Champion
- Anshika4 years agoRegular Visitor
Hi, I am also caught with the same situation & used the same method as you described above but I could not understand the logic behind it , why we used hasonevalue along with values in the measure.
Please explain whenever you see my post!!
Thank you!!