View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Formula Transpose

Well if you copy from B2 to B3 and B4 you will get exactly what you ask for
if you omit the $ in front of the row number
(so ='[08 Expenses.xls]Facilities'!$U101 will become ='[08
Expenses.xls]Facilities'!$U102 and then ...103) [note that you don't need
the + sign after the = in the formula], but as you talk of copying across a
row, you may intend to copy from B2 to C2 and D2?
If so, try =OFFSET($U$101,COLUMN()-COLUMN($B2),0)
--
David Biddulph

"snax500" wrote in message
...
In Excel2000, I have the following formula in cell b2...

=+'[08 Expenses.xls]Facilities'!$U$101

I would like to copy this across the row so that cell b3 reads

=+'[08 Expenses.xls]Facilities'!$U$102

and b4 =

=+'[08 Expenses.xls]Facilities'!$U$103 and so on.

Is there some formula that I can use to do this so I don't have to
edit each cell?

THanks