Forum Discussion
asdf1608
3 years agoHelper V
To customize report page tooltip
I need to customize the tooltip for the report which is the default one. For example: In the highlighted tooltip I need the value to be in thousand not a number. It should be liek 3.9k How ...
andhiii079845
3 years agoSolution Sage
Build a addational field in the correct format and use this in the tooltip.
calc. column:
tooltip = CONCATENATE(round('Table'[year]/1000,2),"K")
Measure:
MeasureTooltp = CALCULATE(CONCATENATE(round(sumx('Table','Table'[year])/1000,2),"K"))