How to check current date

Hi All,

Any one know how to check current date match for today

Best Regards,
Naveen

if DateTime.Now.DayOfWeek.ToString = “Friday”

1 Like

hi @Naveen.Ch,

Please use Date.Now.DayOfWeek.ToString and compare it with the date you want

1 Like

now.DayOfWeek.ToString.Equals(“Friday”)

1 Like

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