View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Formula switches to Text

When you use absolute addresses (the dollar signs in $f$16), then excel _knows_
that you don't want these formulas adjusted when you copy them.

Try using:
=FirstDataSheet!F16

And then copy down.

And if the formulas stay text, here are a couple of things to try:
1. Make sure you're not viewing formulas
(tools|Options|view tab|uncheck formulas)

2. Make sure you don't have any leading spaces before your = sign

3. Ungroup any sheets (if you see [Group] in the titlebar. (You could be
picking up the text format from one of the other grouped sheets.

4. Make sure that the cells are formatted as General before you copy down. (As
suggested by J.E.)

If all this fails...
If the formulas adjust F16, F17, F18, F19, ...., you can fix it later.

Select the range
Format it as general
Edit|replace
what: = (equal sign)
with: = (equal sign)
replace all





Tweedy wrote:

I have a workbook with 60 or so sheets. The first sheet is my "base sheet"
and data from the other 59 are summarized on the base sheet (ie all the names
, addresses, phone# etc)

I am manually selecting data for the first "base data" located at
=FirstDataSheet!$F$16 to base sheet cell A1 which yields "John Doe"
=FirstDataSheet!$F$17 to base sheet cell A2 which yields "123
Main" etc

I completed the first row and wanted to copy Row A to Rows B, C, D etc

When I drag and drop or copy and paste - the formula itself (text) is
placed in the copied to cell. ie instead of "Joe Blow" from the second
datasheet I get =FirstDataSheet!$F$16.

I've done this successfully in the past and don't understand why it fails me
now???
The cell that becomes "corrupted" remains like that and I cannot edit it to
fix it. I just end up with text of what I edited in. The only way to get it
to work correctly is to select the cell, type "=" and then select the cell
data I want from the proper data sheet which would take forever.

HELP !


--
Ray Tweedale
All-around-nice-guy


--

Dave Peterson