View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
trini trini is offline
external usenet poster
 
Posts: 10
Default Filling Cells from Textboxes

Hi everyone,
I am trying to fill about 12 cells from 12 textboxes and for some reason my
code does not work. I know it has to do with the 'Textboxi.Value' but how
else can I do this?

Dim i As Integer
For i = 4 To 15
emptyCell2.Offset(0, i) = TextBoxi.Value
Next i