how to display formulas on the sheet

  • Thread starter Thread starter Guest
  • Start date Start date
Ctrl-` (character to left of numbers)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Else you could go to "tools", "options", then in the "view" panel, tick on
"formulas".
that´ll make you see every formula by its composition rather by its result.
Enjoy !

Albion - Argentina
 
in my excel 2000 it changed width of the columns. can we avoid this?
 
not AFAIK, it does it on the basis that formulae are longer, so you need
wider columns to see them.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Only through a macro which autofits the columns when in formula view.

Sub test()
ActiveWindow.DisplayFormulas = True 'False
Columns.AutoFit
End Sub


Gord Dibben Excel MVP
 
thanks for the tip. naturally only the columns in which the formula or any
other entries are there the columns are autofitted. rest of the columns
remains wider than default.
excell 2000
 
Yes.

If you have blank columns set to a width of 3 or 23, they will be reset to
default which is 8.43.

Other columns with data or formulas will autofit to size.

I prefer to run John Walkenbach's ListFormulas macro to list formulas, cell
addresses and results on another sheet.

http://j-walk.com/ss/excel/tips/tip37.htm

Then you don't muck about with formatting of the original sheet just to see or
print the formulas.


Gord
 
thanks.

Gord Dibben said:
Yes.

If you have blank columns set to a width of 3 or 23, they will be reset to
default which is 8.43.

Other columns with data or formulas will autofit to size.

I prefer to run John Walkenbach's ListFormulas macro to list formulas, cell
addresses and results on another sheet.

http://j-walk.com/ss/excel/tips/tip37.htm

Then you don't muck about with formatting of the original sheet just to see or
print the formulas.


Gord
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top