Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I was trying to set a variable in my script
LET vPreviousMonth = (Month(TODAY())-1);
LET vPreviousMonth1 = Month(TODAY());
but
vPreviousMonth1 = Mar
I want it to say Feb so i try vPreviousMonth but this comes as 2....any ideas how i can change it to say Feb and not 2?
Thanks
Try this:
LET vPreviousMonth = Month(AddMonths(Today(), -1));
Thanks...as always Sunny...You're a Star!
I am glad you think so .
I think you deserve it, The Amount of times you answered my questions and soooo Quickly