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.
Hello Power Bi Community! Hoping someone can help me out.
I have a measure which calulates the "Incident Rate" (IR). Formula for IR is:
Solved! Go to Solution.
Hey,
I think it's because the ALLSELECTED function doesn't work properly this way. Could you try this code?
Cumulative Average =
VAR MinDate =
CALCULATE ( MIN ( 'Employee Hours'[Date (Start of Month]) ), ALLSELECTED ( 'Employee Hours' ) )
VAR MaxDate =
MAX ( 'Employee Hours'[Date (Start of Month])] )
RETURN
CALCULATE (
'Injury Data'[Recordable Injuries] * 200000 / 'Injury Data'[Total Working Hours],
'Employee Hours'[Date (Start of Month])] >= MinDate,
'Employee Hours'[Date (Start of Month])] <= MaxDate
)
Hey,
Assuming you have a calendar table called 'Calendar', this is the code you can use for a measure:
Cumulative Average =
VAR CurrentDate =
MAX ( Calendar[Date] )
RETURN
CALCULATE (
'Injury Data'[Recordable Injuries] * 200000 / 'Injury Data'[Total Working Hours],
ALLSELECTED ( Calendar ),
Calendar[Date] <= CurrentDate
)
Instead of redefining the IR measure in the above code, you can also refer to your already existing IR measure.
Thanks Barthel!
I tried your code and have different results (which is good) but not what we are looking for. Here is a screentshot.
Hey,
Just thinking out loud here. What kind of column is the 'Month' column? A string or value? The VAR CurrentDate must take the MAX of a value column, so that the less than or equal to statement works logically. Is that the case? If not, take the MAX of the column on which you base the sort order of 'Month', rather than 'Month' itself.
Good thoughts! I tried to change it to a calendar value column that I am pulling the month name from. Here is what I get. The second screen shot is of the relationship between the two tables I have and you can see the date columns.
Hey,
I think it's because the ALLSELECTED function doesn't work properly this way. Could you try this code?
Cumulative Average =
VAR MinDate =
CALCULATE ( MIN ( 'Employee Hours'[Date (Start of Month]) ), ALLSELECTED ( 'Employee Hours' ) )
VAR MaxDate =
MAX ( 'Employee Hours'[Date (Start of Month])] )
RETURN
CALCULATE (
'Injury Data'[Recordable Injuries] * 200000 / 'Injury Data'[Total Working Hours],
'Employee Hours'[Date (Start of Month])] >= MinDate,
'Employee Hours'[Date (Start of Month])] <= MaxDate
)
Prefect! You're Awesome! Thanks for the help.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
17 | |
10 | |
10 | |
8 | |
6 |
User | Count |
---|---|
20 | |
18 | |
17 | |
13 | |
10 |