Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to write a Let function for sales date range in edit script?
Hi Vamsi,
Can you please elaborate your problem.
Hi Avinash,
I need syntax for vFromDate= and vToDate= ...for calender object .
I want to select date specific for my sales data.
you can try like,
let vFromDate = Today() - 40; it will give you 40 days back date.
let VTodate = Today() - 2; it will give you 2 days back, as 27- 07- 2014
or let vtoday = Today(); will give you tday...
and than in the textbox you can use as, =Date(VTodate) and = date(vFromDate ) to see whats dates coming...
Hope it help...