Try this:
Sub AHDUpdate()
Dim rFind As Range
With Sheets("Profile").Columns(1)
Set rFind = .Find(What:="name and address", LookAt:=xlPart, _
MatchCase:=False, SearchFormat:=False)
If Not rFind Is Nothing Then
rFind.Offset(, 1).Copy Sheets("Compiled Data").Range("B2")
rFind.Offset(1, 1).Copy Sheets("Compiled Data").Range("B3")
End If
End With
Set rFind = Nothing
With Sheets("Financial Statements").Columns(1)
Set rFind = .Find(What:="period ending date", LookAt:=xlPart, _
MatchCase:=False, SearchFormat:=False)
If Not rFind Is Nothing Then
rFind.Offset(, 1).Copy Sheets("Compiled Data").Range("B4")
End If
End With
Set rFind = Nothing
With Sheets("Profile").Columns(1)
Set rFind = .Find(What:="Health Care System", LookAt:=xlPart, _
MatchCase:=False, SearchFormat:=False)
If Not rFind Is Nothing Then
rFind.Offset(, 1).Copy Sheets("Compiled Data").Range("B5")
End If
End With
End Sub
Bookmarks