Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Can I use IF ISBLANK in a calculated measure?

I have a matrix with a column name "LA" that have some blank rows so I wanna replace them with 0. The thing is this column are a arelady a measure column that look like this

LA = CALCULATE([Rainbow];SAMEPERIODLASTYEAR(Calender[Date]))

How can I in same measure shown above use ISBLANK to repalce those blank rows with 0 ?

2 ACCEPTED SOLUTIONS
AnthonyTilley
Solution Sage
Solution Sage

LA = 
var cal = CALCULATE([Rainbow];SAMEPERIODLASTYEAR(Calender[Date]))
var ret = if(cal = blank,0,cal)
return ret




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

So LA is a measure , not a column, right? You can also modify your measure using dax below:

LA =
IF (
    ISBLANK ( CALCULATE ( [Rainbow]; SAMEPERIODLASTYEAR ( Calender[Date] ) ) );
    0;
    CALCULATE ( [Rainbow]; SAMEPERIODLASTYEAR ( Calender[Date] ) )
)

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

So LA is a measure , not a column, right? You can also modify your measure using dax below:

LA =
IF (
    ISBLANK ( CALCULATE ( [Rainbow]; SAMEPERIODLASTYEAR ( Calender[Date] ) ) );
    0;
    CALCULATE ( [Rainbow]; SAMEPERIODLASTYEAR ( Calender[Date] ) )
)

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

AnthonyTilley
Solution Sage
Solution Sage

LA = 
var cal = CALCULATE([Rainbow];SAMEPERIODLASTYEAR(Calender[Date]))
var ret = if(cal = blank,0,cal)
return ret




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.