View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bernie Deitrick Bernie Deitrick is offline
external usenet poster
 
Posts: 5,441
Default Find Last Occurence in a Range with VBA

Jay,

Dim myC As Range
Set myC = Range("A2:A100").Find("Jay", , , , , xlPrevious)
MsgBox myC.Address

HTH,
Bernie
MS Excel MVP



"jlclyde" wrote in message
...
I am using find to get the first address of occurences in a row, but
how do you get the last occurence?

Thanks,
Jay