Forum Discussion
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
- Anonymous5 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
- mahoneypat
Microsoft Employee
You should be able to do that in the format options for that measure once it is highlighted. You can also use custom format strings.
Use custom format strings in Power BI Desktop - Power BI | Microsoft Docs
Regards,
Pat
- amitchandak
Super User
Anonymous , Formatting done under measure/column tools or under properties of Model view should work
Option 1
Option 2: https://docs.microsoft.com/en-us/power-bi/desktop-custom-format-strings
- AnonymousNot applicable
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.