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
Then there is something in the DAX of your custom label that is breaking it. Can you share your DAX?
kkolady
2 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:
The DAX measure for the custom label which breaks it is:
Data Label NE Bookings = FORMAT([NE Bookings], "#,##0,,.00M")
Anything concerning?
Anything concerning?
Kris K