E
eddie1
Hi there
I'm really a Newbie of VBA .
I would like to build a database, which keep record of value an
releated time from a web query value, which is being updating every
mins .
I attach what I did ( .... just for laughing)
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 3 Then
ThisRow = Target.Row
If Target.Text > " " Then
Range("C" & ThisRow).Copy
Range("D" & ThisRow).PasteSpecial xlPasteValues
End If
End If
End Sub
Thank
I'm really a Newbie of VBA .
I would like to build a database, which keep record of value an
releated time from a web query value, which is being updating every
mins .
I attach what I did ( .... just for laughing)
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 3 Then
ThisRow = Target.Row
If Target.Text > " " Then
Range("C" & ThisRow).Copy
Range("D" & ThisRow).PasteSpecial xlPasteValues
End If
End If
End Sub
Thank