Suppose, I want to set minimum value for date element in which condition is - minimum date should be 7 days before the current date? What configuration I have to do in vFlow to achieve the same?
27 Likes
To set minimum date, go to the Date Element, properties section. In the Validation section of the Properties mention the Min Date.
To set the minimum date 7 days before the current date use the SETDATE() function.
SETDATE(‘currentdate’,‘subtract’,‘7 day’)
20 Likes
SETDATE(‘currentdate’,‘subtract’,‘7 day’) = This is giving error
correct function usage is SETDATE(‘currentdate’,‘subtract’,‘7 days’)
1 Like