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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
BlueNoze
New Member

Making a Total of Multiple Columns Using Multiple Filters

Hi All

 

I have tried searching for the answer to this but cant seem to find the answer plus im very new to BI so appareciate your patience.

 

So I needs to add a card visualisation (which i know how to do 🙂 but it needs to calculate the sum of the 3 columns;

 

"HAccountTotal" (When "Hire Status" = "Unpaid") + "RAccountTotal" (When "RepairStatus" = "Unpaid") + "RSTotal" (When "RandSStatus" = "Unpaid")

 

BlueNoze_0-1593510338306.png

Hope this makes sense. Thanks

1 ACCEPTED SOLUTION
DataZoe
Microsoft Employee
Microsoft Employee

Hi @BlueNoze ,

 

Please try this as a measure:

 

YourMeasure =

calculate(sum(TableName[HAccountTotal]),TableName[Hire Status] = "Unpaid")

+ calculate(sum(TableName[RAccountTotal]),TableName[RepairStatus] = "Unpaid")

+ calculate(sum(TableName[RSTotal]),TableName[RandSStatus]= "Unpaid")

Respectfully,
Zoe Douglas (DataZoe)



Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@BlueNoze , Try like

sumx(Table, switch(true(),Table[Hire Status] = "Unpaid",Table[HAccountTotal],
						Table[RepairStatus] = "Unpaid",Table[RAccountTotal],
						Table[RandSStatus]= "Unpaid" ,Table[RSTotal],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
DataZoe
Microsoft Employee
Microsoft Employee

Hi @BlueNoze ,

 

Please try this as a measure:

 

YourMeasure =

calculate(sum(TableName[HAccountTotal]),TableName[Hire Status] = "Unpaid")

+ calculate(sum(TableName[RAccountTotal]),TableName[RepairStatus] = "Unpaid")

+ calculate(sum(TableName[RSTotal]),TableName[RandSStatus]= "Unpaid")

Respectfully,
Zoe Douglas (DataZoe)



Follow me on LinkedIn at https://www.linkedin.com/in/zoedouglas-data
See my reports and blog at https://www.datazoepowerbi.com/

Worked Perfectly Thanks!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.