Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
leo leo is offline
external usenet poster
 
Posts: 74
Default Get "####" when use alpha char in a cell referenced by a formula

On a timesheet, if a person did not work they have to type in why. However
this results in a "####" in the 'Total Hours' cell that contains the formula.
If using alpha characters in a cell that is referenced by a formula, how can
you get the result to just be a blank cell, and not the "####"? Thank you!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,934
Default Get "####" when use alpha char in a cell referenced by a formula

What is the formula that is doing this?

--
Rick (MVP - Excel)


"Leo" wrote in message
...
On a timesheet, if a person did not work they have to type in why.
However
this results in a "####" in the 'Total Hours' cell that contains the
formula.
If using alpha characters in a cell that is referenced by a formula, how
can
you get the result to just be a blank cell, and not the "####"? Thank
you!


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Get "####" when use alpha char in a cell referenced by a formula

If you widen that column, I bet you'll see an error (#Value!, maybe).

If that's correct, then I'd guess that the resolution would depend on what the
formula is that returns that error.

Maybe something as simple as:

=sum(a1:a2)
or
=n(a1)+n(a2)



Leo wrote:

On a timesheet, if a person did not work they have to type in why. However
this results in a "####" in the 'Total Hours' cell that contains the formula.
If using alpha characters in a cell that is referenced by a formula, how can
you get the result to just be a blank cell, and not the "####"? Thank you!


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,240
Default Get "####" when use alpha char in a cell referenced by a formula

Leo wrote:
On a timesheet, if a person did not work they have to type in why. However
this results in a "####" in the 'Total Hours' cell that contains the formula.
If using alpha characters in a cell that is referenced by a formula, how can
you get the result to just be a blank cell, and not the "####"? Thank you!



=IF(ISNUMBER(YourCell),YourFormula,"")
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Get "####" when use alpha char in a cell referenced by a formula

Leo,

I suspect what it is actually producing is a #VALUE! error and you can't see
it because the cell is too narrow. To avoid this use an error trap around
your formula

=IF(ISERROR(your formula),"",your formula)

Mike

"Leo" wrote:

On a timesheet, if a person did not work they have to type in why. However
this results in a "####" in the 'Total Hours' cell that contains the formula.
If using alpha characters in a cell that is referenced by a formula, how can
you get the result to just be a blank cell, and not the "####"? Thank you!



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7,247
Default Get "####" when use alpha char in a cell referenced by a formula

Typically, you get the ### characters when you attempt to display a
time with a negative value. Without seeing the formula you are using,
it is difficult to give an answer. However, you can use the ISNUMBER
function to test whether a cell has a numeric value. E.g.,

=IF(ISNUMBER(A1),A1,"Not Number")

Here, if A1 is numeric, it will be displayed. If A1 is not numeric,
the text "Not Number" will be displayed. Beyond that, it is hard to
propose a solution without seeing the formula that is causing the
problem.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)


On Thu, 8 Jan 2009 09:37:01 -0800, Leo
wrote:

On a timesheet, if a person did not work they have to type in why. However
this results in a "####" in the 'Total Hours' cell that contains the formula.
If using alpha characters in a cell that is referenced by a formula, how can
you get the result to just be a blank cell, and not the "####"? Thank you!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
The Instruction at "0x749860a0" referenced memory at "0x00000000" Tribeca Excel Discussion (Misc queries) 1 July 5th 08 12:41 AM
Need formula like ISBLANK that returns "no value" even if there is aformula in referenced cell insitedge Excel Worksheet Functions 1 May 7th 08 01:27 PM
how do I eliminate leading "0s" in an alpha numeric cell REST Excel Discussion (Misc queries) 1 September 14th 06 01:35 AM
If A3=alpha numeric,"X", if A3=text,"Y", Blank Gary Excel Worksheet Functions 16 August 8th 06 08:27 PM


All times are GMT +1. The time now is 07:25 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"