I need to check if a date is before or after today’s date 1 year ago, in other words “within the past year.” Using the exact time won’t work. For example “Now” 1 year ago is 3/13/2018 3:15 PM but if the date I’m looking at is 3/13/2018 9:00 AM it still counts as “within the past year.” I have to eliminate the current time from the equation.
When I have UIPath spit out these individual DateParts the values are correctly 3, 13, and 2019.
But when I put it all together the resulting date is 1/13/2019 not 3/13/2019.
I’m just going to manually make a list of all the leap years for the next hundred years or so and an if/then to calculate based on 365 or 366 days. I’ll be dead before the code doesn’t work LOL
Scratch that, that’s complicated because it could be this year or last year that’s a leap year, and it could be before or after Feb 29 etc
But I can use Date.Today.ToString(“mm/dd/yyyy”) then get the current year with DatePart, subtract 1, then replace the year within the string…then convert it back to a date.
It’s almost like there should be easier ways to deal with dates