Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Expression issue

Hi ,

i want to create an expression with following parameters:

1) Date > 11 months before current date and Date2 should be less than today.

Thanks,

Utsav

2 Replies
Not applicable
Author

Hi u can write  expression below

if(Date>Date(AddMonths(Today(),-11)) and Date2<Today(),'True','False')

Regards,

Kabilan K.

Not applicable
Author

Hi,

Thank you it works..!