Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a requirement to pull the data until the last day of the month.
Any idea how to do that on load script ?
May be using Monthend() from where condition
you can either do
Year(Datefield) <= Year(Today()) AND Datefield<= monthend(today()-day(today()))
or simply
Year(Datefield) <= Year(Today()) AND Month(Datefield) <= Month(Today())