Forum Articles
  Welcome back Join CF
You are here You are here: Home | Forum | Excel help please

You are currently viewing our boards as a guest which gives you limited access to view most of the discussions, articles and other free features. By joining our Virgin Media community you will have full access to all discussions, be able to view and post threads, communicate privately with other members (PM), respond to polls, upload your own images/photos, and access many other special features. Registration is fast, simple and absolutely free so please join our community today.


Welcome to Cable Forum
Go Back   Cable Forum > Computers & IT > General IT Discussion

Excel help please
Reply
 
Thread Tools
Old 19-04-2005, 10:06   #1
Janusian
Inactive
 
Join Date: Jul 2004
Age: 53
Posts: 91
Janusian is just really niceJanusian is just really niceJanusian is just really niceJanusian is just really niceJanusian is just really niceJanusian is just really nice
Excel help please

I need some help with Excel. I have a cell which contains a calculation, but I need it to default to a minimum value if the calculation does not generate enough

Here is the cell formula

Code:
 =(E11*0.00025)+(E12*0.0004)+(E11/52*0.025)+(E12/52*0.04)
But I need this to default to 500, if the values entered into cells E11 and E12 do not generate 500 as a result.

I tried searching Excel help, but to no avail.
Janusian is offline   Reply With Quote
Advertisement
Old 19-04-2005, 10:10   #2
Nemesis
Inactive
 
Join Date: Jun 2003
Location: Surrey
Age: 59
Services: Virgin stuff
Posts: 6,407
Nemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny star
Nemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny star
Send a message via MSN to Nemesis
Re: Excel help please

Do the calculation in a different cell ... then

use If ... then referencing that cell to check is it's lower than 500, if so set your cell to 500, if not use the cell you did the calculation in.

=IF(A1<500,500,A1)

A1 being the cell you did the calculation in
Nemesis is offline   Reply With Quote
Old 19-04-2005, 10:17   #3
Janusian
Inactive
 
Join Date: Jul 2004
Age: 53
Posts: 91
Janusian is just really niceJanusian is just really niceJanusian is just really niceJanusian is just really niceJanusian is just really niceJanusian is just really nice
Re: Excel help please

I knew that someone would know - thanks for your prompt response
Janusian is offline   Reply With Quote
Old 19-04-2005, 10:38   #4
philip.j.fry
Inactive
 
philip.j.fry's Avatar
 
Join Date: Jul 2003
Posts: 1,395
philip.j.fry has reached the bronze age
philip.j.fry has reached the bronze agephilip.j.fry has reached the bronze agephilip.j.fry has reached the bronze agephilip.j.fry has reached the bronze age
Re: Excel help please

Is there not a ceiling function in Excel?
philip.j.fry is offline   Reply With Quote
Old 19-04-2005, 10:39   #5
SMHarman
Inactive
 
Join Date: Jun 2003
Services: Cablevision
Posts: 8,305
SMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronze
SMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronzeSMHarman is cast in bronze
Re: Excel help please

Or nest the calculation you want to do where the A1 is in the example so you would put the whole calculation inside brackets.
SMHarman is offline   Reply With Quote
Old 19-04-2005, 10:43   #6
MetaWraith
Inactive
 
MetaWraith's Avatar
 
Join Date: Oct 2003
Location: 2nd CPU to the right & past the cache
Posts: 1,949
MetaWraith has a bronzed appealMetaWraith has a bronzed appeal
MetaWraith has a bronzed appealMetaWraith has a bronzed appealMetaWraith has a bronzed appealMetaWraith has a bronzed appealMetaWraith has a bronzed appealMetaWraith has a bronzed appealMetaWraith has a bronzed appeal
Send a message via ICQ to MetaWraith Send a message via AIM to MetaWraith Send a message via MSN to MetaWraith Send a message via Yahoo to MetaWraith
Re: Excel help please

TIP : If you put the intermediate cell (see Nem's example) in a separate row, you can then hide it completely
MetaWraith is offline   Reply With Quote
Old 19-04-2005, 11:00   #7
PC_Arcade
Inactive
 
Join Date: Jul 2003
Posts: 259
PC_Arcade has a spectacular aura about themPC_Arcade has a spectacular aura about themPC_Arcade has a spectacular aura about themPC_Arcade has a spectacular aura about them
Re: Excel help please

You could do it in one fell swoop though
=IF((E11*0.00025)+(E12*0.0004)+(E11/52*0.025)+(E12/52*0.04)<500,500,A1)
PC_Arcade is offline   Reply With Quote
Old 19-04-2005, 11:01   #8
Nemesis
Inactive
 
Join Date: Jun 2003
Location: Surrey
Age: 59
Services: Virgin stuff
Posts: 6,407
Nemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny star
Nemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny starNemesis has a nice shiny star
Send a message via MSN to Nemesis
Re: Excel help please

Quote:
Originally Posted by PC_Arcade
You could do it in one fell swoop though
=IF((E11*0.00025)+(E12*0.0004)+(E11/52*0.025)+(E12/52*0.04)<500,500,A1)
I knew that .... but as it looked complicated, I broke it down. The OP didn't seem too sure about formulas.
Nemesis is offline   Reply With Quote
Old 19-04-2005, 11:06   #9
PC_Arcade
Inactive
 
Join Date: Jul 2003
Posts: 259
PC_Arcade has a spectacular aura about themPC_Arcade has a spectacular aura about themPC_Arcade has a spectacular aura about themPC_Arcade has a spectacular aura about them
Re: Excel help please

I'm sure you did, I wasn't trying to devalue your answer
PC_Arcade is offline   Reply With Quote
Reply

Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:24.


Server: lithium.zmnt.uk
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
All Posts and Content are © Cable Forum