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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

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

 

 

Did I answer your question? Mark my post as a solution! Appreciate your Kudos.
Follow me on LinkedIn.

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

 

 

Did I answer your question? Mark my post as a solution! Appreciate your Kudos.
Follow me on LinkedIn.

Big thank you! It works!

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.