Hi guys,
I need help in getting the
- Last day of the prev month
- Last day of the prev month + 1 day
appreciate if anyone can assist … im new to this
Thank you
Hi guys,
I need help in getting the
appreciate if anyone can assist … im new to this
Thank you
Hi @para90,
use below code
Now.Addmonths(-1).ToString(''MM/dd/yyyy")
Now.Addmonths(-1).AddDays(1).ToString("MM/dd/yyyy")
Regards,
Arivu
Hi @arivu96
Thanks so much . is this available in xaml file?
You can directly use an assign activity @para90
Hi,
You have to use the above expressions in assign activity, as its shown in below screenshot
Hi Anil,
What do i fill in the variables section? it wont run
Hi para90,
strLastMonthDate → String variable
Last day of the prev month
strLastMonthDate=Now.Addmonths(-1).ToString("MM/dd/yyyy")
para90:
Last day of the prev month + 1 day
strLastMonthDate=Now.Addmonths(-1).AddDays(1).ToString("MM/dd/yyyy")
Regards,
Arivu