Find date in range and paste values offset below

benntw

Board Regular
Joined
Feb 17, 2014
Messages
222
Office Version
  1. 365
Platform
  1. Windows
I am looking for a macro to find the date value in I3 in the date range of L3:BD3. When it finds the value I need it to paste what is in H6 in row 6 in the column it finds the date value in. Thank you for the help
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Try this

VBA Code:
Sub searchdate()
  Dim f As Range
  
  Set f = Range("L3:BD3").Find(Range("I3").Value, , xlFormulas, xlWhole)
  If Not f Is Nothing Then
    Cells(6, f.Column).Value = Range("H6").Value
  Else
    MsgBox "Date not exists"
  End If
  
End Sub
 
Upvote 0
The date range are formulas and the value of I3 is hard keyed. the date range and I3 are formatted as dates. The VBA returned Date not exists even though the dates match.
 
Upvote 0
Change xlFormulas by xlValues

Rich (BB code):
Sub searchdate()
  Dim f As Range
  
  Set f = Range("L3:BD3").Find(Range("I3").Value, , xlValues, xlWhole)
  If Not f Is Nothing Then
    Cells(6, f.Column).Value = Range("H6").Value
  Else
    MsgBox "Date not exists"
  End If
  
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,156
Messages
6,123,339
Members
449,098
Latest member
thnirmitha

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