Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
At the bottom left of my screen instead of READY, I now show TRUE.
On the bottom right of my screen, I see FIX. What does this mean and how can I restore the normal? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Most likely, the "TRUE" in the Status Bar is the result of some badly
written VBA code, which set the status bar text to some informative text and then used Application.StatusBar=True where Application.StatusBar=False was really intended, to give control of the Status Bar back to Excel. The "FIX" indicator means that you are in "Fixed Decimal" mode. In this mode, input has an implied decimal point, so when you enter 1234 it is treated as 12.34. To fix both problems, press ALT F11 to open the VBA editor. There, press CTRL G to display the "Immediate" window or choose "Immediate Window" from the View menu. In the Immediate window, type Application.StatusBar = False and press ENTER. Then type Application.FixedDecimal=False and press ENTER. Close the VBA editor from the File menu to return to Excel. Cordially, Chip Pearson Microsoft Most Valuable Professional Excel Product Group, 1998 - 2009 Pearson Software Consulting, LLC www.cpearson.com (email on web site) On Wed, 9 Sep 2009 14:26:02 -0700, Sherry wrote: At the bottom left of my screen instead of READY, I now show TRUE. On the bottom right of my screen, I see FIX. What does this mean and how can I restore the normal? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
FIX means Fixed decimal.
In xl2003 menus: tools|options|Edit tab|uncheck Fixed Decimal places (If you want) It's just there as a reminder so that when you type: 12 you may see 12.00 Sherry wrote: At the bottom left of my screen instead of READY, I now show TRUE. On the bottom right of my screen, I see FIX. What does this mean and how can I restore the normal? -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
My example should have been:
type: 12 and see 0.12 Sherry wrote: At the bottom left of my screen instead of READY, I now show TRUE. On the bottom right of my screen, I see FIX. What does this mean and how can I restore the normal? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
Check if cells contain the word "Thailand", return "TRUE" | Excel Worksheet Functions | |||
change "true" and "false" to "availble" and "out of stock" | Excel Worksheet Functions | |||
Typing "true" excel 2007 change it to "TRUE" | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel |