The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi all,
So I have a table of Business Application Services. They have two columns:
- One with how many servers they have
- One with how many servers is monitored
- The monitoring coverage (a simple DAX formula which divides monitored servers / how many servers)
The value should be 29%, but Power BI is calculating it as 64%. Any ideas why? Any alternative calculation I can use?
Solved! Go to Solution.
Hey there!
I think if you use this formula instead it should work: (Sum of monitored servers) / (Sum of total servers)
You can write it like this in DAX: Monitoring_Coverage = DIVIDE(SUM('Table'[Monitored Servers]), SUM('Table'[Total Servers]))
Hope this helps!
Zoe 😁😁
Hi, try a measure like this:
AVERAGEX(Table, Table[Monitored Servers] / Table[No of Servers])
If this works, kindly mark this as solution to make it easy for anyone with similar issue find the solution
Hi, try a measure like this:
AVERAGEX(Table, Table[Monitored Servers] / Table[No of Servers])
If this works, kindly mark this as solution to make it easy for anyone with similar issue find the solution
Hey there!
I think if you use this formula instead it should work: (Sum of monitored servers) / (Sum of total servers)
You can write it like this in DAX: Monitoring_Coverage = DIVIDE(SUM('Table'[Monitored Servers]), SUM('Table'[Total Servers]))
Hope this helps!
Zoe 😁😁
User | Count |
---|---|
65 | |
60 | |
55 | |
54 | |
31 |
User | Count |
---|---|
180 | |
88 | |
70 | |
46 | |
46 |