Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
80 | |
76 | |
60 | |
36 | |
33 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |