Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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
User | Count |
---|---|
84 | |
81 | |
65 | |
52 | |
46 |
User | Count |
---|---|
100 | |
48 | |
42 | |
39 | |
38 |