Juan Vaca Posted February 1, 2019 Share Posted February 1, 2019 I have this situation where a value is still ongoing, so they leave it blank on the closing date. Is there a way I can temporarily replace the blank (or null) with today's date upon opening the dashboard So when the data is updated, it's not affected. I was thinking of calculating something like: 'null eq today' I am trying to avoid the user to enter today's date to prevent any errors, am I on the right path Link to comment Share on other sites More sharing options...
Aditya Singh 3 Posted February 12, 2019 Share Posted February 12, 2019 You can try the below condition, this will replace the null vaues with current date. If([closing date] is null,Date(DateTimeNow()),[closing date]) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now