Join 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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have the follwing Custom Column Equation:
if [Overall Status] = "Submitted for Review" then DateTime.LocalNow() - [Submit Date] else [Review Date] - [Submit Date])
All of the Submit Dates are in the past, so I should get only positive values or 0. Some of the records are returning negative values even when the Submit Date is years in the past. How can I fix it to only return postive values?
Solved! Go to Solution.
Hi @alanphamvistra4 ,
You can create a calculated column as below to get it, please find the details in the attachment.
Difference =
VAR _days =
IF (
'Table'[Overall Status] = "Submitted for Review",
DATEDIFF ( 'Table'[Submit Date], TODAY (), DAY ),
DATEDIFF ( 'Table'[Submit Date], 'Table'[Review Date], DAY )
)
RETURN
IF ( _days < 0, BLANK (), _days )
If the above one can't help you, could you please provide more raw data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:
How to provide sample data in the Power BI Forum
How to Get Your Question Answered Quickly
And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi @alanphamvistra4 ,
You can create a calculated column as below to get it, please find the details in the attachment.
Difference =
VAR _days =
IF (
'Table'[Overall Status] = "Submitted for Review",
DATEDIFF ( 'Table'[Submit Date], TODAY (), DAY ),
DATEDIFF ( 'Table'[Submit Date], 'Table'[Review Date], DAY )
)
RETURN
IF ( _days < 0, BLANK (), _days )
If the above one can't help you, could you please provide more raw data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:
How to provide sample data in the Power BI Forum
How to Get Your Question Answered Quickly
And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 38 | |
| 36 | |
| 28 | |
| 28 |
| User | Count |
|---|---|
| 124 | |
| 89 | |
| 73 | |
| 66 | |
| 65 |