Forum Discussion
Anonymous
1 year agoNot applicable
Using filter with DateDiff
Hi All, I'm new to pbi and need help with the following table to calculate the right data: I want to calculate the datediff using actual end date from exit meeting to the actual end date on ...
- Anonymous1 year ago
Hi Anonymous,
Try this measure using CALCULATE Function
VAR ExitDate = CALCULATE( MAX('ProjectPhaseMilestones'[ActualEndDate]), 'ProjectPhaseMilestones'[MilestonesName] = "Exit Meeting" ) VAR FinalAuditDate = CALCULATE( MAX('ProjectPhaseMilestones'[ActualEndDate]), 'ProjectPhaseMilestones'[MilestonesName] = "Final Audit Report" )Regards,
Vinay Pabbu
ajaybabuinturi
1 year agoSuper User
The question makes some confuesion that's why I am asking .pbix file
Anonymous
1 year agoNot applicable
Sorry for any confusion. My table has a milestonenames which includes annoucemene letter, exit meeting, final audit report and finalization. The actual end date is in another column. I want to pull in and compare the actual end date for exit meeting and final audit report, and to calculate if these 2 dates are within 5 business days. I can easily do this in excel but since my other tables are in pbix, i want to see if i can create the same in it. Thanks for your help!