A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Why does it display #### in my cell?



 
 
Thread Tools Display Modes
  #1  
Old March 14th, 2010, 03:30 AM posted to microsoft.public.excel.worksheet.functions
Lindsey-Star
external usenet poster
 
Posts: 1
Default Why does it display #### in my cell?

In cell I25 I have the following formula: =SUM(I11:I14)
All it displays is #####, but when I hover over it, it gives me the correct
answer on a popup tip-like window which is $3,400. So, if it knows the
answer, why is it displaying with the pound signs instead? I think I've
tried everything.
  #2  
Old March 14th, 2010, 04:05 AM posted to microsoft.public.excel.worksheet.functions
Dennis Tucker
external usenet poster
 
Posts: 67
Default Why does it display #### in my cell?

Try making the column width larger.



"Lindsey-Star" wrote in message
...
In cell I25 I have the following formula: =SUM(I11:I14)
All it displays is #####, but when I hover over it, it gives me the
correct
answer on a popup tip-like window which is $3,400. So, if it knows the
answer, why is it displaying with the pound signs instead? I think I've
tried everything.


  #3  
Old March 14th, 2010, 12:29 PM posted to microsoft.public.excel.worksheet.functions
Bob Phillips[_3_]
external usenet poster
 
Posts: 489
Default Why does it display #### in my cell?

Those are hash signs not pound signs, a pound is £

--

HTH

Bob

"Lindsey-Star" wrote in message
...
In cell I25 I have the following formula: =SUM(I11:I14)
All it displays is #####, but when I hover over it, it gives me the
correct
answer on a popup tip-like window which is $3,400. So, if it knows the
answer, why is it displaying with the pound signs instead? I think I've
tried everything.



  #4  
Old March 14th, 2010, 01:45 PM posted to microsoft.public.excel.worksheet.functions
Fred Smith[_4_]
external usenet poster
 
Posts: 2,386
Default Why does it display #### in my cell?

Because you haven't given it enough room to display the result. Widen the
column, or use a smaller font.

Regards,
Fred

"Lindsey-Star" wrote in message
...
In cell I25 I have the following formula: =SUM(I11:I14)
All it displays is #####, but when I hover over it, it gives me the
correct
answer on a popup tip-like window which is $3,400. So, if it knows the
answer, why is it displaying with the pound signs instead? I think I've
tried everything.


  #5  
Old March 14th, 2010, 02:56 PM posted to microsoft.public.excel.worksheet.functions
Dennis Tucker
external usenet poster
 
Posts: 67
Default Why does it display #### in my cell?

In my opinion, the hash marks are a mistake made by Microsoft. For normal
text, when you enter a string that is larger than the cell can display it
just runs over the cells next to it.

Display-wize, it's not a big deal to me because it indicates that my column
width is too small.

However, it is a huge deal to me because when a macro reads the contents of
the same cell, ##### is returned instead of the proper value.



"Fred Smith" wrote in message
...
Because you haven't given it enough room to display the result. Widen the
column, or use a smaller font.

Regards,
Fred

"Lindsey-Star" wrote in message
...
In cell I25 I have the following formula: =SUM(I11:I14)
All it displays is #####, but when I hover over it, it gives me the
correct
answer on a popup tip-like window which is $3,400. So, if it knows the
answer, why is it displaying with the pound signs instead? I think I've
tried everything.


  #6  
Old March 14th, 2010, 04:21 PM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default Why does it display #### in my cell?

Depends upon location Bob.

In Canada # is known as a pound sign.

As in "For more options please press a number key followed by the pound
sign"


Gord

On Sun, 14 Mar 2010 12:29:17 -0000, "Bob Phillips"
wrote:

Those are hash signs not pound signs, a pound is £


  #7  
Old March 14th, 2010, 04:32 PM posted to microsoft.public.excel.worksheet.functions
Dana DeLouis[_3_]
external usenet poster
 
Posts: 184
Default Why does it display #### in my cell?

Just for fun...
On a worksheet ...
Insert Symbol, (under Basic Latin) the # has the name "Number Sign"

= = = = =


On 3/14/10 12:21 PM, Gord Dibben wrote:
Depends upon location Bob.

In Canada # is known as a pound sign.

As in "For more options please press a number key followed by the pound
sign"


Gord

On Sun, 14 Mar 2010 12:29:17 -0000, "Bob Phillips"
wrote:

Those are hash signs not pound signs, a pound is £


  #8  
Old March 14th, 2010, 04:44 PM posted to microsoft.public.excel.worksheet.functions
Dana DeLouis[_3_]
external usenet poster
 
Posts: 184
Default Why does it display #### in my cell?

... when a macro reads the contents
of the same cell, ##### is returned instead of the proper value.


Hmmm. Not sure what you have set up. Is there anything here that will
help?

Sub Demo()
Range("A1").Value = 12345678901234#
Columns("A:A").ColumnWidth = 2 'Narrow to display ##
Debug.Print Range("A1").Text
Debug.Print Range("A1").Value
End Sub

Returns:
##
12345678901234

= = = = =
Dana DeLouis



On 3/14/2010 10:56 AM, Dennis Tucker wrote:
In my opinion, the hash marks are a mistake made by Microsoft. For
normal text, when you enter a string that is larger than the cell can
display it just runs over the cells next to it.

Display-wize, it's not a big deal to me because it indicates that my
column width is too small.

However, it is a huge deal to me because when a macro reads the contents
of the same cell, ##### is returned instead of the proper value.



"Fred Smith" wrote in message
...
Because you haven't given it enough room to display the result. Widen
the column, or use a smaller font.

Regards,
Fred

"Lindsey-Star" wrote in
message ...
In cell I25 I have the following formula: =SUM(I11:I14)
All it displays is #####, but when I hover over it, it gives me the
correct
answer on a popup tip-like window which is $3,400. So, if it knows the
answer, why is it displaying with the pound signs instead? I think I've
tried everything.




--
= = = = = = =
HTH :)
Dana DeLouis
  #9  
Old March 14th, 2010, 04:55 PM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default Why does it display #### in my cell?

Right.........number or pound sign.

"hash" is what my mother used to make from leftover roast beef and potatoes.


Gord

On Sun, 14 Mar 2010 12:32:20 -0400, Dana DeLouis
wrote:

Just for fun...
On a worksheet ...
Insert Symbol, (under Basic Latin) the # has the name "Number Sign"

= = = = =


On 3/14/10 12:21 PM, Gord Dibben wrote:
Depends upon location Bob.

In Canada # is known as a pound sign.

As in "For more options please press a number key followed by the pound
sign"


Gord

On Sun, 14 Mar 2010 12:29:17 -0000, "Bob Phillips"
wrote:

Those are hash signs not pound signs, a pound is £



  #10  
Old March 14th, 2010, 07:35 PM posted to microsoft.public.excel.worksheet.functions
Chip Pearson
external usenet poster
 
Posts: 1,343
Default Why does it display #### in my cell?

Right.........number or pound sign.

The proper name of the # character is 'octothorpe'.

"hash" is what my mother used to make from leftover roast beef and potatoes.


I consumed a lot of hash in my college days, but it wasn't the kind my
Mom made.


Cordially,
Chip Pearson
Microsoft Most Valuable Professional,
Excel, 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com



On Sun, 14 Mar 2010 09:55:38 -0700, Gord Dibben gorddibbATshawDOTca
wrote:

Right.........number or pound sign.

"hash" is what my mother used to make from leftover roast beef and potatoes.


Gord

On Sun, 14 Mar 2010 12:32:20 -0400, Dana DeLouis
wrote:

Just for fun...
On a worksheet ...
Insert Symbol, (under Basic Latin) the # has the name "Number Sign"

= = = = =


On 3/14/10 12:21 PM, Gord Dibben wrote:
Depends upon location Bob.

In Canada # is known as a pound sign.

As in "For more options please press a number key followed by the pound
sign"


Gord

On Sun, 14 Mar 2010 12:29:17 -0000, "Bob Phillips"
wrote:

Those are hash signs not pound signs, a pound is £

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 05:16 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.