The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Look at this table,
Suppose I have given only three column Pot. No, Date, Shift.
And this data gets appended every eight hours so you can see there are three shifts given over there so here I have to create the last column which is shift type, And in shift type I have to write dynamic dax, dynamic dax basically means the last shift would be latest shift. so first shift is shift 1 , second is shift 2 and 3rd is three respective to date.
I have written this dax but it doesn't work
Shift type = if(Fact_Table[date] = MAX(Fact_Table[date]),IF(Fact_Table[time - Copy.2 - Copy]=max(Fact_Table[time - Copy.2 - Copy]),"Latest Shift","Not the latest Shift")
please help
@amitchandak @Greg_Deckler
Pot No | Date | Shift | Shift type |
B9 | 26/11/2022 | 3 | Latest Shift |
B10 | 26/11/2022 | 3 | Latest Shift |
B11 | 26/11/2022 | 3 | Latest Shift |
B12 | 26/11/2022 | 3 | Latest Shift |
B13 | 26/11/2022 | 3 | Latest Shift |
A1 | 25/11/2022 | 1 | Not the latest shift |
A2 | 25/11/2022 | 1 | Not the latest shift |
A3 | 25/11/2022 | 1 | Not the latest shift |
A4 | 25/11/2022 | 1 | Not the latest shift |
A5 | 25/11/2022 | 2 | Not the latest shift |
A6 | 25/11/2022 | 2 | Not the latest shift |
A7 | 25/11/2022 | 2 | Not the latest shift |
A8 | 25/11/2022 | 2 | Not the latest shift |
A9 | 25/11/2022 | 3 | Not the latest shift |
A10 | 25/11/2022 | 3 | Not the latest shift |
A11 | 25/11/2022 | 3 | Not the latest shift |
A12 | 25/11/2022 | 3 | Not the latest shift |
A13 | 25/11/2022 | 3 | Not the latest shift |
A1 | 26/11/2022 | 1 | Not the latest shift |
A2 | 26/11/2022 | 1 | Not the latest shift |
A3 | 26/11/2022 | 1 | Not the latest shift |
A4 | 26/11/2022 | 1 | Not the latest shift |
A5 | 26/11/2022 | 2 | Not the latest shift |
A6 | 26/11/2022 | 2 | Not the latest shift |
B7 | 26/11/2022 | 2 | Not the latest shift |
B8 | 26/11/2022 | 2 | Not the latest shift |
Solved! Go to Solution.
Hi @RavirajMSE ,
you can try this measure
Measure =
VAR MaxDate= CALCULATE(MAX('Table'[Date]),ALL('Table'))
VAR MaxShift = CALCULATE(MAX('Table'[Shift]),ALL('Table'))
RETURN
SWITCH(TRUE(),
SELECTEDVALUE('Table'[Date]) = MaxDate && SELECTEDVALUE('Table'[Shift]) = MaxShift, "Latest Shift",
"Not the latest Shift"
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @RavirajMSE ,
you can try this measure
Measure =
VAR MaxDate= CALCULATE(MAX('Table'[Date]),ALL('Table'))
VAR MaxShift = CALCULATE(MAX('Table'[Shift]),ALL('Table'))
RETURN
SWITCH(TRUE(),
SELECTEDVALUE('Table'[Date]) = MaxDate && SELECTEDVALUE('Table'[Shift]) = MaxShift, "Latest Shift",
"Not the latest Shift"
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Shift type = if(Fact_Table[date] = MAX(Fact_Table[date])&&IF(Fact_Table[shift]=MAX(Fact_Table[shift]),"latest shift","not the latest shift"))
This one also doesn't work
@amitchandak @Greg_Deckler @Jihwan_Kim @Navneet_Kaur @mangaus1111 @Mikelytics
Adding the table once again, above one seems confusing
Pot No | Date | Shift | Shift type | |
B9 | 26/11/2022 | 3 | Latest Shift | |
B10 | 26/11/2022 | 3 | Latest Shift | |
B11 | 26/11/2022 | 3 | Latest Shift | |
B12 | 26/11/2022 | 3 | Latest Shift | |
B13 | 26/11/2022 | 3 | Latest Shift | |
A1 | 25/11/2022 | 1 | Not the latest shift | |
A2 | 25/11/2022 | 1 | Not the latest shift | |
A3 | 25/11/2022 | 1 | Not the latest shift | |
A4 | 25/11/2022 | 1 | Not the latest shift | |
A5 | 25/11/2022 | 2 | Not the latest shift | |
A6 | 25/11/2022 | 2 | Not the latest shift | |
A7 | 25/11/2022 | 2 | Not the latest shift | |
A8 | 25/11/2022 | 2 | Not the latest shift | |
A9 | 25/11/2022 | 3 | Not the latest shift | |
A10 | 25/11/2022 | 3 | Not the latest shift | |
A11 | 25/11/2022 | 3 | Not the latest shift | |
A12 | 25/11/2022 | 3 | Not the latest shift | |
A13 | 25/11/2022 | 3 | Not the latest shift | |
A1 | 26/11/2022 | 1 | Not the latest shift | |
A2 | 26/11/2022 | 1 | Not the latest shift | |
A3 | 26/11/2022 | 1 | Not the latest shift | |
A4 | 26/11/2022 | 1 | Not the latest shift | |
A5 | 26/11/2022 | 2 | Not the latest shift | |
A6 | 26/11/2022 | 2 | Not the latest shift | |
B7 | 26/11/2022 | 2 | Not the latest shift | |
B8 | 26/11/2022 | 2 | Not the latest shift |
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
111 | |
80 | |
78 | |
43 | |
37 |
User | Count |
---|---|
158 | |
111 | |
64 | |
59 | |
54 |