The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
As per the below snippet, I need to create a Slip days, based on Baseline Date. For every Project ID/Name, there is baseline date and they will add new rows with different baseline date with some change. Now I want to find the difference in days, for new baseline date with the very first baseline date for a specific project. Example snippet given below,
Thank you in advance!
Regards,
Jyoti Pawar
Solved! Go to Solution.
@Anonymous
you can create a column
Column = 'Table'[Baseline Date]-CALCULATE(min('Table'[Baseline Date]),ALLEXCEPT('Table','Table'[Project ID],'Table'[Project Name]))
or a measure
Measure = DATEDIFF(CALCULATE(min('Table'[Baseline Date]),ALLEXCEPT('Table','Table'[Project ID],'Table'[Project Name])),MAX('Table'[Baseline Date]),DAY)
pls see the attachment below
Proud to be a Super User!
@Anonymous
Pls see the attachment below
Proud to be a Super User!
@Anonymous
you can create a column
Column = 'Table'[Baseline Date]-CALCULATE(min('Table'[Baseline Date]),ALLEXCEPT('Table','Table'[Project ID],'Table'[Project Name]))
or a measure
Measure = DATEDIFF(CALCULATE(min('Table'[Baseline Date]),ALLEXCEPT('Table','Table'[Project ID],'Table'[Project Name])),MAX('Table'[Baseline Date]),DAY)
pls see the attachment below
Proud to be a Super User!
Thank you for your previous reply, there is one small twist in the original requirement.
Now to calculate the Slip days, we need to consider Report date, MIN(Report date) should be considered and associated Basline Date and the difference we need to consider.
Difference is still calcuated on Basline Date, but if you look a the project B, last value is negative, we did not consider MIN of Basline Date, we took MIN of Report date which is 1/1/2022 and associated Basline is 2/15/2022 and then got the difference.
I am little new to DAX space, appreciate your help!
Thank you!
Regards,
Jyoti
Thank you so much for your help!