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
Oleh
New Member

CALCULATE function based on criteria referring to two columns in one table

Hi All,

 

I have the following input data and need to calulte column Result using DAX.

 

MonthValueID_1ID_2Result
January              12a 0
February              14a 0
March                5b 0
April                7b 0
May                8b 0
June                1c 0
July              41b 0
August              24 a26
September              33 b61

 

In excel I would simply using SUMIFS with criteria range as column "ID_1" and criteria as column "ID_2":Capture.PNG

In DAX I am trying to make the following:

Result = if('Sample'[ID_2] = "", 0 , CALCULATE ( sum ('Sample'[Value]), FILTER ( 'Sample' , 'Sample'[ID_1] = 'Sample'[ID_2] ) ) )
 
But it does not produce result I expect.
 
Can you please advise how can I properly build DAX expression?
 
Thank you in advance,
best regards,
Oleh
1 ACCEPTED SOLUTION
nvprasad
Solution Sage
Solution Sage

Hi,

Can you try below formula 🙂

Result =
Var currntrow = abcd[ID_2]
RETURN
IF(abcd[ID_2]=BLANK(),0,CALCULATE(sum(abcd[Value]),FILTER(abcd,abcd[ID_1]=currntrow)))
 

Appreciate a Kudos! 🙂
If this helps and resolves the issue, please mark it as a Solution! 🙂

Regards,
N V Durga Prasad

 

 

View solution in original post

2 REPLIES 2
nvprasad
Solution Sage
Solution Sage

Hi,

Can you try below formula 🙂

Result =
Var currntrow = abcd[ID_2]
RETURN
IF(abcd[ID_2]=BLANK(),0,CALCULATE(sum(abcd[Value]),FILTER(abcd,abcd[ID_1]=currntrow)))
 

Appreciate a Kudos! 🙂
If this helps and resolves the issue, please mark it as a Solution! 🙂

Regards,
N V Durga Prasad

 

 

Big thank you! It works!

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