View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rich Mcc
 
Posts: n/a
Default How do I auto fill an entire spreadsheet at once?

or a non macro option is to use the if function, but this will depend on how
your data is set up i use this option to direct data on some of my forms but
without seeing how yours is set up its hard to tell the best option:-

maybe insert a extra col and use

assuming customer col = col B and new col = a : in row 2

=if(b2="",a1,b2)








"Carol F." wrote:

I have a spreadsheet with a customer number on line 1, with additional data
about this customer on lines 2-6 (customer column on these lines is blank).
I then have a new customer number on line 7, with additional data about this
second customer on lines 8-12 (custom column on these lines is blank). This
spreadsheet has thousands of such entries.

I am hoping to find a command that will allow me to fill in the custom
number from line 1 down until I find the next custom number already filled;
then take the new customer number and fill it down until I find the next
customer number, etc. Do you know of a command that will help me?