Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I need to compare two dates (completion date & target date) and calculate a % of items that were completed within the set target date.
My data looks like below :
Item # | Completion date | Target Date |
1 | 15/08/2020 | 20/08/2020 |
2 | 17/08/2020 | 15/08/2020 |
3 | 20/08/2020 | 20/08/2020 |
4 | 23/08/2020 | 20/08/2020 |
The data type for both the date columns is set to date.
If the completion date is less than or equal to the target date, then display Met else Not met. Then calculate a % of the total items that met the SLA.
To compare the two dates and return a value in a calculated column, I am using the 'IF' function, however, I get the following error
Solved! Go to Solution.
@Anonymous , check data type of both columns it should be date and datetime
Also this should be column
SLA = If(TestWorkFlow[ActualCompletionDate]< TestWorkFlow[TargetDate],"Met", "Not met")
Also check for date form dd/mm/yyyy
@Anonymous , check data type of both columns it should be date and datetime
Also this should be column
SLA = If(TestWorkFlow[ActualCompletionDate]< TestWorkFlow[TargetDate],"Met", "Not met")
Also check for date form dd/mm/yyyy
@amitchandak Thanks. It worked. I didn't check the field/data type for one of the dates that's what was causing the error.
@Anonymous - I think you want something like Open Tickets - https://community.powerbi.com/t5/Quick-Measures-Gallery/Open-Tickets/m-p/409364#M147
User | Count |
---|---|
76 | |
75 | |
46 | |
31 | |
27 |
User | Count |
---|---|
99 | |
91 | |
51 | |
49 | |
46 |