cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
GeekAlfPro
Super User
Super User

How to display measure value even it's blank

I have a measure that calculate the first day of the month of my dataset for my vehicles

Date début données = CALCULATE(
        IF(
            ISBLANK(FIRSTDATE(daily_aggregate_final[Date])),
                    BLANK(),
                    FORMAT(FIRSTDATE(daily_aggregate_final[Date]), "d")
            
        )        
        )

the trouble is if there no data at all for a specific vehicle, it is not displayed.

it works with the following code

Date début données Capte = CALCULATE(
        IF(
            ISBLANK(FIRSTDATE(daily_aggregate_final[Date])),
                    0,
                    FORMAT(FIRSTDATE(daily_aggregate_final[Date]), "d")
            
        )        
        )

But i want to have blank instead of 0

how can i modify my measure to display all vehicles even if there no data.

 

Thanks

 

1 ACCEPTED SOLUTION
jjudy
Frequent Visitor

If it's only for a visual, you could right click on your vehicles in the visualization builder and select Show items with no data.

 

Show Items with no data 

View solution in original post

2 REPLIES 2
GeekAlfPro
Super User
Super User

Thanks @jjudy 

 

that was it !

 

have a good day

jjudy
Frequent Visitor

If it's only for a visual, you could right click on your vehicles in the visualization builder and select Show items with no data.

 

Show Items with no data 

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors