Michael
This little macro will do that. HTH Otto
Sub EValue()
Dim rColC As Range
Dim i As Range
Set rColC = Range("C2", Range("C" & Rows.Count).End(xlUp))
For Each i In rColC
If Not IsEmpty(i.Value) Then
i.Offset(, 2).Copy
i.Offset(, 2).PasteSpecial xlPasteValues
End If
Next i
End Sub
"Michael" <(E-Mail Removed)> wrote in message
news:80F8B1AD-B187-43D7-B4EA-(E-Mail Removed)...
>I have a spreadsheet to record serial numbers already populated in column A
> and the date the specific serial number was issued. The issuer puts a
> code
> in column C which automatically assigns a date in column E and some
> location
> details in columns F to H. What I need to do is run a macro which saves
> the
> file but changes column E to a value if column C is not blank. Column C
> can
> have gaps between rows.
>
> Any ideas would be greatly appreciated
>
> Michael
|