View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default Using a Form to control variable fields.

Try this...

Dim intRowA
intRowA = 1
Do while Range("A" & intRowA) < strName
intRowA = intRowA + 1
Loop

Range("B" & intRowA) = value
Range("C & intRowA) = value


f this post helps click Yes
--------------
Jacob Skaria