How to get First day of the current month

How to get and assign the First day of the current month in string variable in below format : “MM/dd/yyyy”

image

HI @Sathish_Kumar_S

You can get the first date with the below formula

New DateTime(Now.Year,Now.Month,1).Tostring("MM/dd/yyyy")

Regards
Sudharsan

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.