Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Tooltip not showing values correctly formatted

Hello,

 

I have some measures formatted with thousand separator and percentage but the tooltip is not showing them correctly formated.

 

Any tips to fix this? On power bi report server october 2020

 

Thanks,

João

  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi Anonymous ,

     

    As amitchandak said, you could format measure directly in Format Pane-->Measure tools as shown below:

    Or you could use FORMAT() function in DAX like this:

    percentage in DAX =
    FORMAT ( <value>, "#.00%" )
    thousand separator in DAX =
    FORMAT ( <value>, "#,###" )

     

    Please take a look at the pbix file here.

     

    Best Regards,
    Eyelyn Qin
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

3 Replies