View Single Post
 
Old 02-26-2017, 08:00 PM
Kannand Kannand is offline Windows 10 Office 2007
Novice
 
Join Date: Feb 2017
Posts: 3
Kannand is on a distinguished road
Default

Quote:
Originally Posted by Kannand View Post
I'm trying to update the column B with today's date based on the date value in column A and a couple of other values in other columns. If column B is already populated, I need to leave it untouched. I'm trying to get this in a macro so one could click a button to have this updated. The will be new records added to this spreadsheet every week and this update would be necessary.
I just came across this code in another post, that seems to work....

Sub update all()
Active sheet.Range("j4:j1048517).Value =Active sheet.Range(l4:l1048517").Value
End Sub
Reply With Quote