Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Jim Jim is offline
external usenet poster
 
Posts: 615
Default Help fixing a formula

Hello,

The following formula works great, except when the cell it's referencing is
blank, then I receive #VALUE. What do I need to do in order to fix this
issue? Thanks in advance for the help.


=ROUND(IF(ISERROR(G52*C53),"",IF(G52*C53=0,"",ROUN DUP(G52*C53,0))),0)

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Help fixing a formula

Maybe change the order of things so you're not trying to round up that ""
string:

=if(iserror(g52*c53),"",if(g52*c53=0,"",roundup(g5 2*c53,0)))

I'm not quite sure why you need that extra =round() in your formula, though.

Jim wrote:

Hello,

The following formula works great, except when the cell it's referencing is
blank, then I receive #VALUE. What do I need to do in order to fix this
issue? Thanks in advance for the help.

=ROUND(IF(ISERROR(G52*C53),"",IF(G52*C53=0,"",ROUN DUP(G52*C53,0))),0)


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 236
Default Help fixing a formula

In your formula, you are trying to round a blank. Doesn't work. Try...
=IF(ISERROR(G52*C53),"",IF(G52*C53=0,"",ROUND(ROUN DUP(G52*C53,0),0)))
--
Hope this helps.
If it does, please click the Yes button.
Thanks in advance for your feedback.
Gary Brown



"Jim" wrote:

Hello,

The following formula works great, except when the cell it's referencing is
blank, then I receive #VALUE. What do I need to do in order to fix this
issue? Thanks in advance for the help.


=ROUND(IF(ISERROR(G52*C53),"",IF(G52*C53=0,"",ROUN DUP(G52*C53,0))),0)

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
Fixing the header on the top ali Excel Discussion (Misc queries) 2 September 6th 07 07:33 AM
Fixing Last Cell [email protected] Excel Discussion (Misc queries) 4 January 24th 07 12:15 AM
Fixing Hyphens Good Intentions Excel Worksheet Functions 2 April 10th 06 07:39 PM
Fixing a formula Boethius1 Excel Discussion (Misc queries) 2 January 18th 06 11:38 PM
Help with fixing formula Pat Excel Worksheet Functions 4 December 21st 04 11:38 AM


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

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

About Us

"It's about Microsoft Excel"