Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
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
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
76 | |
75 | |
70 | |
47 | |
41 |
User | Count |
---|---|
64 | |
41 | |
32 | |
30 | |
28 |