i need to get the current date minus 3 days in the format
29 June 2020
The below will give it to me but wont work if its on the first 3 days of the month.
DateTime.Now.AddDays(-3).ToString(“dd”) + " " + DateTime.Now.ToString(“MMMM”) + " " + DateTime.Now.ToString(“yyyy”)