Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Sol Sol is offline
external usenet poster
 
Posts: 12
Default Suppress @VALUE! on a template.

I have created an "Invoice" template to allow me to bill my client for work
done on an hourly basis. The template calculated the total cost for each job
and the total of all costs. However, in the cells that contain the
calculated values appears #VALUE! until the hours and rates are entered. Is
there a way to suppress that legend? This is important because the template
will generally show more rows than is needed for most clients.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,696
Default Suppress @VALUE! on a template.

=IF(ISERROR(CALCULATION),"",CALCULATION)

should do it.

"Sol" wrote:

I have created an "Invoice" template to allow me to bill my client for work
done on an hourly basis. The template calculated the total cost for each job
and the total of all costs. However, in the cells that contain the
calculated values appears #VALUE! until the hours and rates are entered. Is
there a way to suppress that legend? This is important because the template
will generally show more rows than is needed for most clients.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,346
Default Suppress @VALUE! on a template.

Hi,

You have a number of options:

1. in 2003 - write an error handling formula
=IF(ISERROR(myformula),"",myformula)
=IF(ISERR(myformula),"",myformula)
=IF(ISNA(myformula),"",myformula) we often use this one with VLOOKUP

2. In 2007 - write any of the above or better yet use
=IFERROR(myformula,"")

3. Suppress the display of the error by using conditional formatting

4. Suppress the printing of the error by choosing File, Page Setup, Sheet
tab, and under Cell errors as choose blanks

If this helps, please click the Yes button

Cheers,
Shane Devenshire

"Sol" wrote:

I have created an "Invoice" template to allow me to bill my client for work
done on an hourly basis. The template calculated the total cost for each job
and the total of all costs. However, in the cells that contain the
calculated values appears #VALUE! until the hours and rates are entered. Is
there a way to suppress that legend? This is important because the template
will generally show more rows than is needed for most clients.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Suppress @VALUE! on a template.

Generally you check for empty or not numeric cells and return a blank cell
instead of the error.

Or the simpler =ISERROR(formula),"",(formula)

But note that the ISERROR will mask any error.

What formulas do you have that return the #VALUE! error?


Gord Dibben MS Excel MVP


On Tue, 2 Dec 2008 13:06:07 -0800, Sol
wrote:

I have created an "Invoice" template to allow me to bill my client for work
done on an hourly basis. The template calculated the total cost for each job
and the total of all costs. However, in the cells that contain the
calculated values appears #VALUE! until the hours and rates are entered. Is
there a way to suppress that legend? This is important because the template
will generally show more rows than is needed for most clients.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Suppress @VALUE! on a template.

Forgot the IF and misplaced parens.

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


Gord

On Tue, 02 Dec 2008 14:20:15 -0800, Gord Dibben <gorddibbATshawDOTca wrote:

Generally you check for empty or not numeric cells and return a blank cell
instead of the error.

Or the simpler =ISERROR(formula),"",(formula)

But note that the ISERROR will mask any error.

What formulas do you have that return the #VALUE! error?


Gord Dibben MS Excel MVP


On Tue, 2 Dec 2008 13:06:07 -0800, Sol
wrote:

I have created an "Invoice" template to allow me to bill my client for work
done on an hourly basis. The template calculated the total cost for each job
and the total of all costs. However, in the cells that contain the
calculated values appears #VALUE! until the hours and rates are entered. Is
there a way to suppress that legend? This is important because the template
will generally show more rows than is needed for most clients.


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
Suppress a row DCN Excel Worksheet Functions 2 January 22nd 07 07:16 PM
Suppress duplicate data Prema Excel Worksheet Functions 2 March 28th 06 01:22 PM
Suppress array formula #NA [email protected] Excel Worksheet Functions 4 November 15th 05 05:17 PM
How can I suppress prompts during macro run? Andorv Excel Discussion (Misc queries) 2 October 19th 05 12:37 PM
#DIV/0! ...how to suppress when using this formula.... Randy Lefferts Excel Discussion (Misc queries) 7 December 2nd 04 09:56 PM


All times are GMT +1. The time now is 04:46 PM.

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"