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

summarizecolumns and if statement

Hello, 

 

something I don't understand.

I want count a if statement with two columns. 

Test = if(sum('Table'[Column1]) >0 && sum('Table'[Column2])>0,1,0)
 
AnnaAliera18_0-1658832856728.png

What I want is the Sum of Test. I'll tried this.

 

test2 = var table1 = SUMMARIZECOLUMNS('Table'[AccountID],"Sum",if(sum('Table'[Column1]) >0 && sum('Table'[Column2])>0,1,0)) return sumx(table1,[Sum])
 

But I'll get an error if i want show it together with AccountId.

 

AnnaAliera18_1-1658833120598.png

 

 

Is there somebody who could explain me this behaviour of DAX 🙂

 

I don't understand why I can't use AccountId with this measure. 

 

Thanks and take care, 

Anna 

 

 

 

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

Hi @AnnaAliera18 ,

 

Please try:

 

test = SUMX(ADDCOLUMNS('Table',"SUM",IF([Column1]>0&&[Column2]>0,1,0)),[SUM])

 

Output:

vjianbolimsft_0-1659091677756.png

Best Regards,

Jianbo Li

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

3 REPLIES 3
v-jianboli-msft
Community Support
Community Support

Hi @AnnaAliera18 ,

 

Please try:

 

test = SUMX(ADDCOLUMNS('Table',"SUM",IF([Column1]>0&&[Column2]>0,1,0)),[SUM])

 

Output:

vjianbolimsft_0-1659091677756.png

Best Regards,

Jianbo Li

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

amitchandak
Super User
Super User

@AnnaAliera18 , Use summarize with Addcolumns

 

 


test2 = var table1 = Addcolumns(Summarize('Table', 'Table'[AccountID]) ,"Sum",if(sum('Table'[Column1]) >0 && sum('Table'[Column2])>0,1,0))
return sumx(table1,[Sum])

Thanks the error is gone but the calculation is wrong. 

the Total gets 5 

AnnaAliera18_0-1658843906846.png

 

 

how  I can get 3 in my total? 

What I want is sum the 1 in the column. If I use a physical table it works fine, but i want use a VAR and only one measure if it works. 

Thanks for your help 🙂 

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.