Hi Everyone,
I'm working on a collision dashboard/report where it would identify whether a driver requires retraining or not. The measure would return a value of "Yes" or "No" based on certain conditions. These conditions are as follows: Retraining is required for a driver with two non-preventable collisions within 18 months or if a collision is preventable. For everything else, the return value should be "No." I created a dax that worked for the first part (2 non-preventable over 18-mos) of the condition; however, I'm struggling with the 2nd part of the syntax. Please see below for reference:
Any assistance would be greatly appreciated. Thanks, in advance.
Solved! Go to Solution.
Hi, @taskinosurname
You can try the following methods.
Sample data:
Measure:
Difference = IF(SELECTEDVALUE('Table'[Last Collision Date])=BLANK(),0,
ABS (DATEDIFF (SELECTEDVALUE ( 'Table'[Date] ),
SELECTEDVALUE ( 'Table'[Last Collision Date] ),MONTH)))
Retraining Req'd =
IF (SELECTEDVALUE ( 'Table'[Last Collision Date] ) <> BLANK ()
&& SELECTEDVALUE ( 'Table'[Type] ) = "Non Preventable"
&& [Difference] < 18,
"Yes",
IF (SELECTEDVALUE ( 'Table'[Last Collision Date] ) = BLANK ()
&& SELECTEDVALUE ( 'Table'[Type] ) = "Preventable",
"Yes",
"No"
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @taskinosurname
You can try the following methods.
Sample data:
Measure:
Difference = IF(SELECTEDVALUE('Table'[Last Collision Date])=BLANK(),0,
ABS (DATEDIFF (SELECTEDVALUE ( 'Table'[Date] ),
SELECTEDVALUE ( 'Table'[Last Collision Date] ),MONTH)))
Retraining Req'd =
IF (SELECTEDVALUE ( 'Table'[Last Collision Date] ) <> BLANK ()
&& SELECTEDVALUE ( 'Table'[Type] ) = "Non Preventable"
&& [Difference] < 18,
"Yes",
IF (SELECTEDVALUE ( 'Table'[Last Collision Date] ) = BLANK ()
&& SELECTEDVALUE ( 'Table'[Type] ) = "Preventable",
"Yes",
"No"
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks a million. This is what I was looking for. Given that I'm still relatively a novice with DAX, I would've never thought to put a measure within a measure. Thanks again.
Warm regards,
Taski
Hi @taskinosurname ,
Maybe something like this using OR. Pleas double check the ().
Thank you for the quick response. I appreciate it.
I tried your possible solution with no success. Oddly enough, it's even counting Non-preventables' outside 18 months.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
101 | |
73 | |
43 | |
32 | |
30 |
User | Count |
---|---|
148 | |
95 | |
87 | |
50 | |
41 |