View Single Post
 
Old 02-19-2017, 02:02 PM
jeffreybrown jeffreybrown is offline Windows Vista Office 2007
Expert
 
Join Date: Apr 2016
Posts: 673
jeffreybrown has a spectacular aura aboutjeffreybrown has a spectacular aura about
Default

Could be as simple as...
Code:
Sub Look_At_A37()
    If Len(Range("A37")) > 1 Then
        Range("C15").Value = Range("A37").Value
        Range("C16").Value = Range("A38").Value
    End If
End Sub
Reply With Quote