Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi!
I created a custom data label to format numbers in the visuals, but also have a custom tooltip based on report page where the visual also have custom data labels. On Desktop(1st picture), it works fine, the line chart and tooltip have the correct labels as you can see. However, on Service (2nd picture), the line chart continues working fine but the tooltip is ignoring the format and is showing values without the formatting.
Power BI Desktop:
Power BI Service:
The DAX measure is the following:
Thanks for any help!
Hi @Gian_Tafur - This issue where custom formatting works in Power BI Desktop but not in Power BI Service is a common problem
slight modification of your dax:
Format_Acum_Opex =
VAR Value = [Acum_Opex]
RETURN
SWITCH(
TRUE(),
Value >= 1000000, Value / 1000000, // Convert to Millions
Value >= 1000, Value / 1000, // Convert to Thousands
Value <= -1000000, Value / 1000000, // Negative Millions
Value <= -1000, Value / 1000, // Negative Thousands
Value // Keep original for small numbers
)
Try re-publishing your report.Clear the browser cache & cookies.Refresh the dataset.
Hope this helps.
Proud to be a Super User! | |
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
25 | |
19 | |
18 | |
14 | |
11 |
User | Count |
---|---|
32 | |
20 | |
19 | |
18 | |
11 |