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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi everyone, I have the following dataset
I am trying to get the first and last datetime stamp for each shift (there are multiple shifts A,B,C,D) per day.
I have tried this formula but it doesn't work due to duplicated rows in the trndte column.
Any ideas would be much appreciated
Thanks
Solved! Go to Solution.
Hi @georgec96
please try New Column
Last DateTime =
CALCULATE (
MAX ( 'Table'[trndte] ),
ALLEXCEPT ( 'Table', 'Table'[Shift], 'Table'[Date] )
)
Hi @georgec96
please try New Column
Last DateTime =
CALCULATE (
MAX ( 'Table'[trndte] ),
ALLEXCEPT ( 'Table', 'Table'[Shift], 'Table'[Date] )
)
Hi @georgec96,
Can you try
MinDate = CALCULATE ( MIN ( 'Table'[trndte]), ALLEXCEPT('Table'[Shift]))
MaxDate = CALCULATE ( MAX ( 'Table'[trndte]), ALLEXCEPT('Table'[Shift]))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 19 | |
| 12 | |
| 10 |