The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi There,
I have two columns in two differnet Tables
Table 1 : Analysis & Column Name : Missed Revenue
Table 2 : Billing & Column Name : Revenue
I want a Card to hold the percentage of 'Missed Revenue/Revenue'
I tried to create a measure to solve this :
Measure = sum(Analysis[Underbilled Cost]/sum(Billing[Revenue]))
but am getting error as ' SUM function only accepts column reference as an Argument '.
Alternatively, if this is wrong approach can anyone please direct me to how to solve this aother way.
Thanks,
AB
Hi@ AMB_PI
You can use this measure as below:
Measure = sum(Analysis[Underbilled Cost]) / sum(Billing[Revenue])
Result:
Best Regards,
Lin
Do this method acceptable to use column reference as an argument??
You missed the bracket. http://prntscr.com/kmyky5
Try it DIVIDE(Analysis[Underbilled Cost];sum(Billing[Revenue]))
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
108 | |
77 | |
75 | |
43 | |
37 |
User | Count |
---|---|
156 | |
109 | |
64 | |
60 | |
55 |