R rosef New member Local time Today, 05:14 Joined Jan 18, 2021 Messages 9 Jan 19, 2021 #1 I am doing some data clean-up on a birthdate field. I have over 5000 records that need the 20XX changed to 19XX of the date field. Is there away that I can update just the 20 to 19? If so, how?
I am doing some data clean-up on a birthdate field. I have over 5000 records that need the 20XX changed to 19XX of the date field. Is there away that I can update just the 20 to 19? If so, how?
theDBguy I’m here to help Staff member Local time Today, 05:14 Joined Oct 29, 2018 Messages 22,734 Jan 19, 2021 #2 How about subtracting 100 years from it? Just a thought...
Isaac Lifelong Learner Local time Today, 05:14 Joined Mar 14, 2017 Messages 11,777 Jan 19, 2021 #3 Edit I was a moment too slow. Yep - either what dbGuy said, or subtract 1 year from it.
Minty AWF VIP Local time Today, 13:14 Joined Jul 26, 2013 Messages 10,706 Jan 19, 2021 #4 You could use DateAdd("yyyy",-100,[YourDateField]) Edit - too slow....