J jlclyde Sep 30, 2008 #1 I am using find to get the first address of occurences in a row, but how do you get the last occurence? Thanks, Jay
I am using find to get the first address of occurences in a row, but how do you get the last occurence? Thanks, Jay
B Bernie Deitrick Sep 30, 2008 #2 Jay, Dim myC As Range Set myC = Range("A2:A100").Find("Jay", , , , , xlPrevious) MsgBox myC.Address HTH, Bernie MS Excel MVP
Jay, Dim myC As Range Set myC = Range("A2:A100").Find("Jay", , , , , xlPrevious) MsgBox myC.Address HTH, Bernie MS Excel MVP
J jlclyde Oct 1, 2008 #3 Jay, Dim myC As Range Set myC = Range("A2:A100").Find("Jay", , , , , xlPrevious) MsgBox myC.Address HTH, Bernie MS Excel MVP - Show quoted text - Click to expand... This was not what I was thinking but this will do nicely. Thanks, Jay
Jay, Dim myC As Range Set myC = Range("A2:A100").Find("Jay", , , , , xlPrevious) MsgBox myC.Address HTH, Bernie MS Excel MVP - Show quoted text - Click to expand... This was not what I was thinking but this will do nicely. Thanks, Jay