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

greater than condition for select in field action (Date field)

Hi,

I am trying to set a action for date field, it is working fine if i give the direct value but it is not working with greater than symbol.

Sample.png

Exprn.png

So how do can make the above to work?

1 Solution

Accepted Solutions
antoniotiman
Master III
Master III

Hi,

Try

='>'&Date($(=Today()-7))

Regards,

Antonio

View solution in original post

5 Replies
antoniotiman
Master III
Master III

Hi,

Try

='>'&Date($(=Today()-7))

Regards,

Antonio

Anil_Babu_Samineni

Seems, You have Number format and Today() returns the Date Format as always. Can you cross check the same

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

Hi

Check the Date Format once

Kushal_Chawda

try this expression

='(' & concat( distinct if([Lead Created Date]>= today()-7,chr(39)&[Lead Created Date]&chr(39)),',') & ')'

Anonymous
Not applicable
Author

Thank you very much Antonio Mancini..

It worked as expected.