Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
I have some incident data, and I need to count the number of days since any of the following have occurred: first aid, recordable, and lost time. I would like to use a card to display the total number of days since any of these have occurred. There are some incidents in the column, such as near misses, that I do not want to count. Basically I would like the first aids, recordables, and lost times to be aggregated so that if any of them occur, the total safe days reset to zero. My understanding is that I can use a DAX expression using DATEDIFF, but I can only figure out how to count the days between one value, not all three.
Ultimately, I want to have one count for maintenance "safe days" and another count for construction "safe days." I have some sample data shown below to demonstrate the columns I have.
Solved! Go to Solution.
@ld17 Maybe:
Measure =
VAR __Today = TODAY()
VAR __Last = MAX('Table'[Date of Incident])
RETURN
( __Today - __Last ) * 1.
@ld17 Maybe:
Measure =
VAR __Today = TODAY()
VAR __Last = MAX('Table'[Date of Incident])
RETURN
( __Today - __Last ) * 1.
Thank you for this! While this gives me the number of days since the last incident overall, I am still having trouble figuring out how to narrow it down to only the criteria I need (first aids, recordables, and lost times) and not just every incident that gets inputted on our log. I also only need it for the two departments: maintenance and construction.
@ld17 Well generally that would be done by putting your columns for that into some kind of visualization and thereby filtering the underlying table. But, you could also use MAXX(FILTER(...),...) when getting your __Last and thus hard code your filtering criteria if necessary.
Ah, that makes sense. I was being dumb and overthinking that. That works. Thanks so much!
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.