Forum Discussion
Display my data values on a graph without calculated functions like sum, count etc
- irfanreporting9 years ago
Helper I
Thank you for the responses and help, Please find my sample dataset below. So I just want to display the data as is on the graph with Scenarios 1,2,3,4,5 on x-axis and EnqueuePerSecs,DequeuePerSecs,ProcessedPerSecs values on Y-axis without any MIN,MAX,AVG etc.
Date RunType Scenario Nodes EnqueuePerSecs DequeuePerSecs ProcessedPerSecs TimeToEnqueueMs_99 TimeToEnqueueMs_95 TimeToDequeueMs_99 TimeToDequeueMs_95 00:00.0 10 Nodes 1 10 706 462 576 1297 406 500 94 00:00.0 10 Nodes 2 10 465 369 369 1609 938 813 219 00:00.0 10 Nodes 3 10 461 461 461 110 91 9172 1110 00:00.0 10 Nodes 4 10 385 345 426 2344 1344 1031 422 00:00.0 10 Nodes 5 10 369 368 368 172 109 19798 8813 - v-huizhn-msft9 years ago
Microsoft Employee
Hi irfanreporting,
In desktop, there is "Don't summarize" in table visual. For your requriement, you create a line or clustered cloumn chart, so it must have MIN, MAX, AVG etc aggregated functions if you want to select any number fields as value. You'd better create a measure as Vvelarde posted, then select the measure as value.
For example, create two measure using the formulas.DequeuePerSecs-T = IF(HASONEVALUE(Test2[DequeuePerSecs]),VALUES(Test2[DequeuePerSecs])) EnqueuePerSecs-T = IF(HASONEVALUE(Test2[EnqueuePerSecs]),VALUES(Test2[EnqueuePerSecs]))
Then add the 'Scenario' as x-axis level, the measure as values, you will get expected result.If you have other issues, don't hesitate to let me know.
Best Regards,
Angelia
- irfanreporting9 years ago
Helper I
Dear Angela,
Thanks a lot for your response and help, For some reason I am not getting any values displayed on the graph after following all the steps. Can u pls help? Did I miss something?
Created Measure:
DequeuePerSecs-My = IF(HASONEVALUE('MyTable1'[DequeuePerSecs]),VALUES('MyTable1'[DequeuePerSecs]))
screenshot: