Macro or other to Search a date and replace with new date with a condition

Antispam246

New Member
Joined
Apr 4, 2015
Messages
9
I have two date columns B and C both formatted to date xx/xx/xx

I want to be able to (ideally) run a macro which searches for a specific date in column B and replaces it with a new one but only if column C is empty.

As the dates that will change further down the line will be manually updated as they are random it can't be automatic and I can manually edit the date requirements in said macro prior to the next run.

Any help appreciated
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Try this:
Code:
Private Sub CommandButton1_Click()
'Modified  10/6/2019  5:05:41 AM  EDT
Dim Lastrow As Long
Lastrow = Cells(Rows.Count, "B").End(xlUp).Row
Dim i As Long
Dim Lookfor As String
Dim ReplaceWith As String
Lookfor = InputBox("Enter date to look for", "Today is  " & Date)
ReplaceWith = InputBox("Enter date To enter", "Today is  " & Date)

    For i = 1 To Lastrow
        If Cells(i, 2).Value = Lookfor And Cells(i, 3).Value = "" Then Cells(i, 2).Value = ReplaceWith
    Next
    
End Sub
 
Upvote 0
Try this

Change 2019,09,21 (yyyy,mm,dd) For the date to replace
Change 2019,10,15 (yyyy,mm,dd) For the new date

Code:
Sub ReplaceDate()
  With Range("B2", Range("B" & Rows.Count).End(xlUp))
    .Value = Evaluate("=IF({1},IF(" & .Address & "=DATE([COLOR=#ff0000]2019,09,21[/COLOR]),IF(" & .Offset(, 1).Address & "="""",DATE([COLOR=#0000ff]2019,10,15[/COLOR])," & .Address & ")," & .Address & "))")
  End With
End Sub
 
Upvote 0
Thank you both, I ran into issues with the first lot of code, an error stating macros weren't enabled. The second lot Sub ReplaceDate() worked perfectly.

Going to do abit more testing on the test sheet before converting the original to macro enabled but all seems good, thank you!
 
Upvote 0
Im glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,728
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top