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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Difference between two values when one of the value is blank

Hi All,

I am a newbie to PBI. I have run into this issue with my matrix visual

Delta is calculated basically as the difference between Date 1 & Date 2 using DAX. If there is value in Date 1 (say 100) and a value in Date 2 (70) the Delta is 30. But like the table below sometimes the value in Date 1 is blank/empty/null and Date 2 has a value and vice verse . If that is the situation I need the Delta to show up as a negative and positive value respectively.
For example (see first 2 rows...3rd and 4th row are working as expected)

Date 1 Date 2 Delta
 100-100
100 100
906030
6090-30

 

Can someone help with this?
Thanks!

1 ACCEPTED SOLUTION
v-rongtiep-msft
Community Support
Community Support

Hi @Anonymous ,

Please refer to my pbix file to see if it helps you.

Create a column.

Delta_column = 'Table'[date 1]-'Table'[date 2]

Or a measure.

Delta_measure = MAX('Table'[date 1])-MAX('Table'[date 2])

vpollymsft_0-1654823838601.png

If I have misunderstood your meaning, please provide more details with your desired output(Final output in image form).

 

Best Regards

Community Support Team _ Polly

 

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

1 REPLY 1
v-rongtiep-msft
Community Support
Community Support

Hi @Anonymous ,

Please refer to my pbix file to see if it helps you.

Create a column.

Delta_column = 'Table'[date 1]-'Table'[date 2]

Or a measure.

Delta_measure = MAX('Table'[date 1])-MAX('Table'[date 2])

vpollymsft_0-1654823838601.png

If I have misunderstood your meaning, please provide more details with your desired output(Final output in image form).

 

Best Regards

Community Support Team _ Polly

 

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

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors