Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi,
I have created a new column with the following formula, however it is not returning the results I require:
Please could you advise how to do this.
Solved! Go to Solution.
@pardeepd84 , if this is a numeric column this should work. Not sure why are you diving
IF ( ISBLANK( [Actual Start Time] ), BLANK(),
If(ABS([Planned Duration Minutes] - [Actual Duration Minutes]) = 0, "ok",
IF (ABS([Planned Duration Minutes] - [Actual Duration Minutes]) > 10 , "not", "ok")))
if it time - time then you have take minutes from that
example
IF ( ISBLANK( [Actual Start Time] ), BLANK(),
If( minute([Planned Duration Minutes] - [Actual Duration Minutes]) = 0, "ok",
IF (minute([Planned Duration Minutes] - [Actual Duration Minutes]) > 10 , "not", "ok")))
@pardeepd84 , if this is a numeric column this should work. Not sure why are you diving
IF ( ISBLANK( [Actual Start Time] ), BLANK(),
If(ABS([Planned Duration Minutes] - [Actual Duration Minutes]) = 0, "ok",
IF (ABS([Planned Duration Minutes] - [Actual Duration Minutes]) > 10 , "not", "ok")))
if it time - time then you have take minutes from that
example
IF ( ISBLANK( [Actual Start Time] ), BLANK(),
If( minute([Planned Duration Minutes] - [Actual Duration Minutes]) = 0, "ok",
IF (minute([Planned Duration Minutes] - [Actual Duration Minutes]) > 10 , "not", "ok")))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 76 | |
| 37 | |
| 31 | |
| 29 | |
| 26 |