Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
HI,
I have few tables from which i have created something like this:
EHS | |||
rows | count | Average | Delta |
Hazard id | 683 | 60 | |
AI | 15 | 1.25 |
for average i am dividing the counts by the month number and the value is coming fine when relative date filter is used
but for the delta i am not getting the correct value.
Solved! Go to Solution.
Hi @Anonymous ,
Is the following image your expected result? I used ALLEXCEPT( 'Table', 'Table'[rows] ) as a filter.
Hi @Anonymous ,
Is the following image your expected result? I used ALLEXCEPT( 'Table', 'Table'[rows] ) as a filter.
for delta i have to do counts divided by average but when i am using this the formula is considering counts from both the row.
EHS | |||
rows | count | Average | Delta |
Hazard id | 683 | 60 | 12% |
AI | 15 | 1.25 | 12% |
but i want is percent of 683/60 and 15/1.25 and what it is giving is summing and dividing it equally
Operations Proactive Average = SUM('Operations Proactive'[Count]) / DISTINCTCOUNT('Date Dim'[MonthNumber])
Operations Proactive Delta = DIVIDE(SUM('Operations Proactive'[Count]),[Proactive Average])/100
These are the 2 formulas i am using currently.
@Anonymous , this will make it like
(1/ DISTINCTCOUNT('Date Dim'[MonthNumber]))*100
Check if this is what you needed
Operations Proactive Delta = DIVIDE(SUM('Operations Proactive'[Count]),calculate([Proactive Average],all(Table)))/100
User | Count |
---|---|
98 | |
76 | |
75 | |
49 | |
27 |