Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon'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.
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")
Hope this makes sense. Thanks
Solved! Go to Solution.
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/
@BlueNoze , Try like
sumx(Table, switch(true(),Table[Hire Status] = "Unpaid",Table[HAccountTotal],
Table[RepairStatus] = "Unpaid",Table[RAccountTotal],
Table[RandSStatus]= "Unpaid" ,Table[RSTotal],blank()))
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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
74 | |
63 | |
51 | |
47 |
User | Count |
---|---|
211 | |
85 | |
64 | |
59 | |
56 |