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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
nontmn
Helper I
Helper I

Dax filter column in column

Hello,

I would like to Sum sale by filter other like this

CALCULATE(SUM(ZGI[sale]),FILTER(ZGI,(ZGI[model])=ZGI[model]))
I would like model from that row will filter other out and sum only this model.
but (ZGI[model])=ZGI[model] not working in column 
PS. I have to use in column not measure because I will use this column next.
Thank you
1 ACCEPTED SOLUTION

Hi @nontmn ,

Based on your original formula, I modified it to calculte the values. 

 

Column 4 = DIVIDE(CALCULATE(SUM('Table'[A]),FILTER('Table',EARLIER('Table'[model])='Table'[model])),'Table'[A])

 

3.PNG

Is this what you want? If not, can you please post the expected result? Then we will understand your requirement clearly.

 

Best Regards,

Xue Ding

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

 

Best Regards,
Xue Ding
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

9 REPLIES 9
Zubair_Muhammad
Community Champion
Community Champion

@nontmn 

 

Try following

 

=
CALCULATE (
    SUM ( ZGI[sale] ),
    FILTER ( ZGI, ( ZGI[model] ) = EARLIER ( ZGI[model] ) )
)

Thank you It's working but when I use in another column for sum another thing it show 

"a circular dependency was detected" 

I have to make fomular like this for 3 column

Please help

Thanks

Hi @nontmn 

 

What formula did you use?

If you could copy paste some sample data and expected results, it will help in finding an appropriate solution

 

As a sample see the below post

https://community.powerbi.com/t5/Desktop/join-two-tables-and-find-min-after-doing-group-by/m-p/76893...

I use 

column1 = CALCULATE (SUM ( ZGI[sale] ),FILTER ( ZGI, ( ZGI[model] ) = EARLIER ( ZGI[model] ) ))

and next I create column 2 like this

column2 = CALCULATE (SUM ( ZGI[GI] )

It show "a circular dependency was detected:ZGI[GI],ZGI[sale],ZGI[GI]" 

@nontmn 

 

I don't see any error in your formula

Could you share your file?

 

What are you trying to achieve with

column2 = CALCULATE (SUM ( ZGI[GI] )

if your Table rows are different then above formula and column2 = ZGI[GI]  would yield same results

https://1drv.ms/u/s!AqosNctB7VSarCPtoiEg786KxV_h?e=B3rWp9

I create new file to compare issue at "Column 4"

@nontmn 

 

I checked your file.
What is your desired output in Column 4?

 

Actually, I have many version for one model so sometime I cannot indicate version, it has to share to other version.

My idea is create column that already shared sales by month and model but when I create another column with same method it show circular dependency detected(sum column[A]).

I already use measure method to share version but I found something wrong (subtotal sum up) . So I think it better to share before next calculation by measure.

Hi @nontmn ,

Based on your original formula, I modified it to calculte the values. 

 

Column 4 = DIVIDE(CALCULATE(SUM('Table'[A]),FILTER('Table',EARLIER('Table'[model])='Table'[model])),'Table'[A])

 

3.PNG

Is this what you want? If not, can you please post the expected result? Then we will understand your requirement clearly.

 

Best Regards,

Xue Ding

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

 

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

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!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

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