I have a VBA macro which selects several cells based on if it contains conditional formatting. These cells won't all be in the same place on each sheet. What I am looking for is a command to skip the activecell to the next cell in the range. The same as pressing TAB on a highlighted range
At the moment I am using sendkeys, as below, however this is messy, and keeps adding Tab spaces in the next line of the vba code (hence the "____Loop")
ActiveCell.SpecialCells(xlCellTypeAllFormatConditions).Select
Do Until Recount = Count
Recount = Recount + 1
Application.SendKeys "{TAB}", True
Loop
Any advice would be appreciated