hello and thanks for helping
I cant seem to quite find what I am looking for so here it goes,
I am looking through column A for "*West"
then, if the next cell down is blank, I want it to = *West,
however,
if the next cell down has data, I want it to stop
I started with this, and had no luck,
thank you
Thomas
I cant seem to quite find what I am looking for so here it goes,
I am looking through column A for "*West"
then, if the next cell down is blank, I want it to = *West,
however,
if the next cell down has data, I want it to stop
I started with this, and had no luck,
Code:
For i = 1 To finalrow
If WST.Cells(i, 1) = "*WEST" Then
WST.Cells(i + 1, 1) = "*WEST"
ElseIf WST.Cells(i + 1, 1).Value > "" Then
' i would like it to stop
thank you
Thomas