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
Hi all,
I am a bit stuck, i want to calculate elapsed time between "Submitted" and "Approved by Hub" status.
They are over different rows liked by the claim #
Any help would be really apreciated
Thanks in advance
Solved! Go to Solution.
@DannyVickery wrote:
Hi all,
I am a bit stuck, i want to calculate elapsed time between "Submitted" and "Approved by Hub" status.
They are over different rows liked by the claim #
Any help would be really apreciated
Thanks in advance
You can try to create measures like
submitted time = MAXX ( FILTER ( 'Table', 'Table'[New_Status_c] = "SUBMITTED" ), 'Table'[Change_date_c] ) approved time = MAXX ( FILTER ( 'Table', 'Table'[New_Status_c] = "APPROVED BY HUB" ), 'Table'[Change_date_c] ) elapsed hours = DATEDIFF([submitted time],[approved time],MINUTE)/60
@DannyVickery wrote:
Hi all,
I am a bit stuck, i want to calculate elapsed time between "Submitted" and "Approved by Hub" status.
They are over different rows liked by the claim #
Any help would be really apreciated
Thanks in advance
You can try to create measures like
submitted time = MAXX ( FILTER ( 'Table', 'Table'[New_Status_c] = "SUBMITTED" ), 'Table'[Change_date_c] ) approved time = MAXX ( FILTER ( 'Table', 'Table'[New_Status_c] = "APPROVED BY HUB" ), 'Table'[Change_date_c] ) elapsed hours = DATEDIFF([submitted time],[approved time],MINUTE)/60
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.
User | Count |
---|---|
109 | |
78 | |
67 | |
52 | |
50 |
User | Count |
---|---|
121 | |
119 | |
77 | |
62 | |
61 |