Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Below expression in list box is not working.
=if(DATE([Expiration Date],'MM-DD-YYYY') >'09-01-2016',[Expiration Date])
Not suure why
Thank you.
Try this:
=if([Expiration Date] > MakeDate(2016, 9, 1), [Expiration Date])
Try this:
=if([Expiration Date] > MakeDate(2016, 9, 1), [Expiration Date])
Is ur ([Expiration Date], a date .Add list box and see..If its falling ryt panel then yes..If at left pane then use first Date# and then proceed..
Sachin
upon cross verify,
Sunny's expression should work
Sachin
Thnak you sunnyy..That worked...
how can I put the same in sheet trigger ?
I gave the below in select in field.Not working
='>=' & MakeDate(2016, 9, 1)
May be like this:
Field
[Expiration Date]
Search String
='>=' & Date(MakeDate(2016, 9, 1), 'DateFieldFormatHere')
Make sure to use the date field format of Expiration Date to replace DateFieldFormatHere
You need to give the right date format here
You are awesome....my hero