Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Thanks
Madhu
if(date(vMakeToday)<vToday,Date(vToday,'MM-DD-YYYY'),Date(vMakeToday,'MM-DD-YYYY'))
if(date(vMakeToday)<vToday,Date(vToday,'MM-DD-YYYY'),Date(vMakeToday,'MM-DD-YYYY'))
Try,
=Date(if(vMakeToday<vToday,vToday),'MM-DD-YYYY')
Hi Josna,
first of all, next time write your request in the textarea and not in an attachment: it will help other users with your same problem in the future.
Try to use the Date function to convert che numeric date in a date format: =Date(yourdatefield,'MM-DD-YYYY')
In your example:
= 'Date as of: ' & Date(if(vMakeToday<vToday,vToday),'MM-DD-YYYY')
or
=if(vMakeToday<vToday,'Date as of: ' & Date(vToday,'MM-DD-YYYY'))
Let us know
S.
=Date(if(vMakeToday<vToday,vToday),'MM-DD-YYYY')
try like this :
if(vMakeToday<vToday,vToday,Date(vMakeToday,'MM-DD-YYYY'))
Hi Simone
Ok Fine thank you very much for giving suggestion.
Josna.
if you have got the answer, please mark the correct answer and close this thread