Forum Discussion
asdf1608
Helper V
3 years agoTo 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
Solution Sage
3 years agoBuild 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"))