View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
jono_dude jono_dude is offline
external usenet poster
 
Posts: 3
Default selecting multiple ActiveCell items (possibly loop problem)

i'll add a wee bit, cos i just changed it(a bit that didn't make sense
before), and add a bit to the case, so you have an idea

......

Do While ActiveCell.Value < ""
Range("J" & i).Select

Select Case ActiveCell.Value
case 1
A = "65"
case 2
A = "50"
....
....

End Select

......