Forum Discussion
Graph Hover Options
- 8 years ago
Hi Jelle,
Write measures to get the value of each row per category or what ever u want.
Suppose,
Measure for compare = Measure for compare = CALCULATE(SUMX(your_table_name,your_table_name[amount]), ALLEXCEPT(your_table_name,your_table_name[name]))
next measure,
Num format =
IF (
[Measure for compare] >= 1000000,
FORMAT ( [Measure for compare], "#,##0,,m" ),
IF (
[Measure for compare] >= 1000,
FORMAT ( [Measure for compare], "#,##0,k" ),
FORMAT ( [Measure for compare], "General Number" )
)
)check and let me know..... :)
- 8 years ago
Hi Jelle,
After test, another way you can set the display values in thousands, please review the first screenshot, it display the original value of each year, you can choose "thousands"(highlighted in yellow background) on the data label under Format, please see the second screenshot.
picture1picture2Best Regards,
Angelia
Hi Jelle,
Write measures to get the value of each row per category or what ever u want.
Suppose,
Measure for compare = Measure for compare = CALCULATE(SUMX(your_table_name,your_table_name[amount]), ALLEXCEPT(your_table_name,your_table_name[name]))
next measure,
Num format =
IF (
[Measure for compare] >= 1000000,
FORMAT ( [Measure for compare], "#,##0,,m" ),
IF (
[Measure for compare] >= 1000,
FORMAT ( [Measure for compare], "#,##0,k" ),
FORMAT ( [Measure for compare], "General Number" )
)
)
check and let me know..... :)
- Jelle8 years agoFrequent Visitor
Thank you very much for helping mehaboob557. I will try this and report back later!
- mehaboob5578 years agoResolver III
Ok... If its working fine... Give a kudo and accept the solutions
- v-huizhn-msft8 years agoMicrosoft Employee
Hi Jelle,
Please mark the right reply as answer if you have resolved your issue, so more people will get helpful information from here. Thanks for understanding.
Best Regards,
Angelia - v-huizhn-msft8 years agoMicrosoft Employee
Hi Jelle,
After test, another way you can set the display values in thousands, please review the first screenshot, it display the original value of each year, you can choose "thousands"(highlighted in yellow background) on the data label under Format, please see the second screenshot.
picture1picture2Best Regards,
Angelia