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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Razaning
Frequent Visitor

Summing columns with condition

Hey y'all!

 

I'm trying to sum columns with a conidion, where the value <> 4 

I tried to do the following but I didn't succeed: 

((Column A <> 4) + (Column B <> 4) + (Column C <> 4))/10

 

Any idea how this can be done?

 

Thank you

1 ACCEPTED SOLUTION
tamerj1
Community Champion
Community Champion

Hi @Razaning 

please try

Measur =
SUMX (
FILTER (
'Table',
'Table'[ColumnA] <> 4
&& 'Table'[ColumnB] <> 4
&& 'Table'[ColumnC] <> 4
),
'Table'[Column A] + 'Table'[Column B] + 'Table'[Column C]
) / 10

View solution in original post

1 REPLY 1
tamerj1
Community Champion
Community Champion

Hi @Razaning 

please try

Measur =
SUMX (
FILTER (
'Table',
'Table'[ColumnA] <> 4
&& 'Table'[ColumnB] <> 4
&& 'Table'[ColumnC] <> 4
),
'Table'[Column A] + 'Table'[Column B] + 'Table'[Column C]
) / 10

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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