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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
DiegoPerez85
Frequent Visitor

Variation shows -100% for blank cells

Hi! I'm trying to show a table with past year and current year sales and the variation. For some brands where there is no data, the measure I created shows -100%. I would like to only see brands data, hiding the others.

 

This is the measure formula:

 

Var C9L vs LY = SUMX(Variables,Variables[Volume C9 Act (CY)])/SUMX(Variables,Variables[Volume C9 Act (LY)])-1

 

This is the result for blank data

Variation error.png

 

 How can I solve this?

 

Thanks!!!

 

Diego

 

 

2 ACCEPTED SOLUTIONS
dedelman_clng
Community Champion
Community Champion

You'll need to us IF logic to return a blank when there is a blank.  By subtracting 1, you're giving it a value.

 

IF  (SUMX( Variables,Variables[Volume C9 Act (CY)] ) <> 0,
 SUMX(Variables,Variables[Volume C9 Act (CY)])/SUMX(Variables,Variables[Volume C9 Act (LY)])-1,
 BLANK())

 

I would also use DIVIDE instead of the tranditional A/B

 

Hope this helps

David

View solution in original post

Hi! Thanks for your help! I improved the formula and now it's working perfectly. This is how it ended:

 

Var C9L vs LY = IF(DIVIDE(SUMX(Variables,Variables[Volume C9 Act (CY)]),SUMX(Variables,Variables[Volume C9 Act (LY)])) <> BLANK(),(DIVIDE(SUMX(Variables,Variables[Volume C9 Act (CY)]),SUMX(Variables,Variables[Volume C9 Act (LY)]))-1),BLANK())

 

Thanks again!

 

Diego

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Rather than comparing to 0 using <> 0, you could also try using the ISBLANK() function to check if the value is blank. That way, if for some reason your SUM was 0, you would actually show 0, but if it doesn't exist you would show blank.

dedelman_clng
Community Champion
Community Champion

You'll need to us IF logic to return a blank when there is a blank.  By subtracting 1, you're giving it a value.

 

IF  (SUMX( Variables,Variables[Volume C9 Act (CY)] ) <> 0,
 SUMX(Variables,Variables[Volume C9 Act (CY)])/SUMX(Variables,Variables[Volume C9 Act (LY)])-1,
 BLANK())

 

I would also use DIVIDE instead of the tranditional A/B

 

Hope this helps

David

Hi! Thanks for your help! I improved the formula and now it's working perfectly. This is how it ended:

 

Var C9L vs LY = IF(DIVIDE(SUMX(Variables,Variables[Volume C9 Act (CY)]),SUMX(Variables,Variables[Volume C9 Act (LY)])) <> BLANK(),(DIVIDE(SUMX(Variables,Variables[Volume C9 Act (CY)]),SUMX(Variables,Variables[Volume C9 Act (LY)]))-1),BLANK())

 

Thanks again!

 

Diego

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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.