Hi,
I have several cells in column A in which i named them via the Insert/Names....
I want to loop through the column based on a condition and when that condition is met, to provide me with the name of the cell.
y = x
Do While Cells(y, 1).Value = Empty
y = y - 1
Loop
CellName = ?????? (How do i get the cell's name here?)
thanks
I have several cells in column A in which i named them via the Insert/Names....
I want to loop through the column based on a condition and when that condition is met, to provide me with the name of the cell.
y = x
Do While Cells(y, 1).Value = Empty
y = y - 1
Loop
CellName = ?????? (How do i get the cell's name here?)
thanks