I am writing a logic to choose files greater than a certain date. But the default value for this input parameter should be Today().
Is there a way to do this ?
-Saurabh
(SOU-RUBH)
You could use a decision stage at the start of your object page. If the input is empty, use a calculation stage to set the date to Today(), if not use the input.
To add to Jeroen's suggestion, if your input is a Date datatype instead of Text, you can use the IsDate() function in your decision stage to determine whether it's empty.
Thanks guys. I was using the Length of the variable ( as I could not find IsNull or IsEmpty functions).
But now I will use the isDate function.
thanks,
Saurabh