View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Jez[_2_] Jez[_2_] is offline
external usenet poster
 
Posts: 1
Default Fill & Drag to Right !! HELP !

Hi,

I have a spreadsheet with to worksheets, Sheet1 & Sheet2.

On Sheet1 column 'I' has a formula that gets it's data from column
'A'.
=MID(A8,12,4)

This works fine and 'I' is populated correctly.

On Sheet2 I have rows of fields that needs to be dynamically linked to
column I on Sheet1.
Sheet2 B4 has the formula =VALUE(Sheet1!I8) which produces the correct
result from Sheet1 I8.

What I would like to do is copy the formula from B4 to C4, then D4,
then E4 etc..

If I try this I get:
=VALUE(Sheet1!I8), =VALUE(Sheet1!J8), =VALUE(Sheet1!K8), =VALUE
(Sheet1!L8) etc

NOT:

=VALUE(Sheet1!I8), =VALUE(Sheet1!I9), =VALUE(Sheet1!I10), =VALUE
(Sheet1!I11) etc.

How do I do this ??

Thanks :)