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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Circular dependency detected - Calculated Columns

Hello Guys, I have created two Measures as below and it works.., Since it was a Measure i am unable to use the measure in Page Filter.

Is there any way to bring both columns as a Calculated Columns? Please help..,

 

Column 1 = CALCULATE(SUM('Dship'[Month 1]), 'Dship'[KEYFIG] IN { "GEO Forecast" })
Column 2 = CALCULATE(SUM('Dship'[Month 1]), 'Dship'[KEYFIG] IN { "Total Month Demand" })
 
With Regards,
Aswinraj A
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

You can do like this. But filter will be at like level

Column 1 = if ('Dship'[KEYFIG] IN { "GEO Forecast" } ,('Dship'[Month 1]),blank() )
Column 2 = if('Dship'[KEYFIG] IN { "Total Month Demand" },('Dship'[Month 1]),blank() )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

4 REPLIES 4
Greg_Deckler
Community Champion
Community Champion

I'm not sure why that would cause a circular dependency from the information provided. Sample data and all that would help. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

You can do like this. But filter will be at like level

Column 1 = if ('Dship'[KEYFIG] IN { "GEO Forecast" } ,('Dship'[Month 1]),blank() )
Column 2 = if('Dship'[KEYFIG] IN { "Total Month Demand" },('Dship'[Month 1]),blank() )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

@AM thank you soo Much.., it works 🙂

Anonymous
Not applicable


@amitchandak Can you please explain why that blank was added? So that i can learn something today newly.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors