View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
rhody[_14_] rhody[_14_] is offline
external usenet poster
 
Posts: 1
Default VBA and subtotals

Easiest thing to do is:

For Each c In Range("E2:E" & RowCnt)
If c.Value = "Your Value" Then
c.Offset(0, 1).Value = "New Value"
FindCnt = FindCnt + 1
End If
Next c



------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~ View and post usenet messages directly from http://www.ExcelForum.com/