Forum Discussion
kkolady
2 years agoRegular Visitor
Custom Data Labels not showing up on Service
In my report, when I add a custom data label a Clustered Bar Chart visual - it is not displaying when published to service. It displays fine on Power BI Desktop. I've narrowed the issue down to the a...
hvnter
2 years agoResolver I
Have you tried erasing it in the service and adding it back?
kkolady
2 years agoRegular Visitor
I've uploaded the report to my personal workspace and seeing similar behavior. Works fine without the custom label, but the visual is broken w/custom label.
Kris K
- hvnter2 years agoResolver I
Then there is something in the DAX of your custom label that is breaking it. Can you share your DAX?
- kkolady2 years agoRegular Visitor
The visual is based on the measure [NE Bookings] ... here is the DAX code for the measures:
Bookings = CALCULATE( SUM(FACTORDERS[BOOKED_VALUE]), DateCalendar[IsBooked] = TRUE )NE Bookings = CALCULATE( [Bookings],KEEPFILTERS(FACTORDERS[ORDER_TYPE] = "CURRENT" || FACTORDERS[ORDER_TYPE] = "NEW" ))
The DAX measure for the custom label which breaks it is:Data Label NE Bookings = FORMAT([NE Bookings], "#,##0,,.00M")
Anything concerning?Kris K