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.
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
User | Count |
---|---|
78 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
100 | |
93 | |
51 | |
50 | |
48 |