Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have jan, feb, mar.......... Dec
If i am click March i want to show Feb Month data..(i want show Preious month) in script level...
Thanks...
Hi,
Try this code.
Load Month(Date) as Current_Month,
Month(Addmonths(Date,-1)) as Previous _Month
From xyz.
Regards,
Kaushik Solanki
Hi,
Try this code.
Load Month(Date) as Current_Month,
Month(Addmonths(Date,-1)) as Previous _Month
From xyz.
Regards,
Kaushik Solanki
Hi,
Another way is use variable like vPrevMonth = Month(Addmonths(DateField,-1))
Thanks
ThankU for Response............