The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi, I have two columns
Col. A Col. B
1-Jan 2020 10-Jan-2020
3-Mar-2020 3-Apr-2020
15-Aug-2020 5-Sep-2020
7-Jan-2020 15-Jan-2020
11-Feb-2020 12-Apr-2020
10-Nov-2020 07-Jan-201
I want to take the Min date of Col. A and Max date of Col B. to calculate total duration. I have case where smallest date in Col. A is the start date and Max Date in Col B. is the end date.
Any help is appreciated.
Solved! Go to Solution.
pls try this
Measure = DATEDIFF(min('Table'[Col.A]),max('Table'[Col.B]),DAY)
Proud to be a Super User!
worked perfectly, thank you...
you are welcome
Proud to be a Super User!
pls try this
Measure = DATEDIFF(min('Table'[Col.A]),max('Table'[Col.B]),DAY)
Proud to be a Super User!