Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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,"") |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
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) | |||
The Instruction at "0x749860a0" referenced memory at "0x00000000" | Excel Discussion (Misc queries) | |||
Need formula like ISBLANK that returns "no value" even if there is aformula in referenced cell | Excel Worksheet Functions | |||
how do I eliminate leading "0s" in an alpha numeric cell | Excel Discussion (Misc queries) | |||
If A3=alpha numeric,"X", if A3=text,"Y", Blank | Excel Worksheet Functions |