Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default I would like a little help with a formula, please


I am using the following formula in cell I20, =IF(B20="x",E20*G20,"No
X in B 20") which works fine. I want to change it where in cell B20 I
can input any number, then the formual will do the E20*G20 and also
multiply by the number in B20. I would think that is pretty simple
for you Excel guru's but not for me :-).

Thanks!

Jess

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default I would like a little help with a formula, please

Try something like =IF(ISNUMBER(B20),B20*E20*G20,"No x in B20")

Dave
--
Brevity is the soul of wit.


"Jesse" wrote:


I am using the following formula in cell I20, =IF(B20="x",E20*G20,"No
X in B 20") which works fine. I want to change it where in cell B20 I
can input any number, then the formual will do the E20*G20 and also
multiply by the number in B20. I would think that is pretty simple
for you Excel guru's but not for me :-).

Thanks!

Jess


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 98
Default I would like a little help with a formula, please

Jesse,

Try this:

=IF(B20="x",E20*G20*B20,"No X in B 20")

I think that will accomplish what you described.

I hope this helps,

Conan Kelly



"Jesse" wrote in message ...

I am using the following formula in cell I20, =IF(B20="x",E20*G20,"No
X in B 20") which works fine. I want to change it where in cell B20 I
can input any number, then the formual will do the E20*G20 and also
multiply by the number in B20. I would think that is pretty simple
for you Excel guru's but not for me :-).

Thanks!

Jess



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default I would like a little help with a formula, please

X in your formula is text, not a number. You can't multiply text.
--
Brevity is the soul of wit.


"Conan Kelly" wrote:

Jesse,

Try this:

=IF(B20="x",E20*G20*B20,"No X in B 20")

I think that will accomplish what you described.

I hope this helps,

Conan Kelly



"Jesse" wrote in message ...

I am using the following formula in cell I20, =IF(B20="x",E20*G20,"No
X in B 20") which works fine. I want to change it where in cell B20 I
can input any number, then the formual will do the E20*G20 and also
multiply by the number in B20. I would think that is pretty simple
for you Excel guru's but not for me :-).

Thanks!

Jess




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default I would like a little help with a formula, please

Or maybe =IF(B20="x","no number in B20",E20*G20*B20)

Not sure what you want to enter in B20............"x" or a number?


Gord Dibben MS Excel MVP

On Mon, 13 Nov 2006 12:24:00 -0700, "Conan Kelly" <CTBarbarin at msn dot com
wrote:

Jesse,

Try this:

=IF(B20="x",E20*G20*B20,"No X in B 20")

I think that will accomplish what you described.

I hope this helps,

Conan Kelly



"Jesse" wrote in message ...

I am using the following formula in cell I20, =IF(B20="x",E20*G20,"No
X in B 20") which works fine. I want to change it where in cell B20 I
can input any number, then the formual will do the E20*G20 and also
multiply by the number in B20. I would think that is pretty simple
for you Excel guru's but not for me :-).

Thanks!

Jess





  #6   Report Post  
Posted to microsoft.public.excel.misc
rml rml is offline
external usenet poster
 
Posts: 50
Default I would like a little help with a formula, please

Jesse james....will u populate this formula on a row or column...or this is
for one cell formula only ??

"Jesse" wrote:


I am using the following formula in cell I20, =IF(B20="x",E20*G20,"No
X in B 20") which works fine. I want to change it where in cell B20 I
can input any number, then the formual will do the E20*G20 and also
multiply by the number in B20. I would think that is pretty simple
for you Excel guru's but not for me :-).

Thanks!

Jess


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 55
Default I would like a little help with a formula, please

lets go the way assuming a one cell formula...with a touch of dave's formula
I20=IF(ISNUMBER(B20),B20*E20*G20,IF(B20="X",E20*G2 0,"No x in B20"))
if you type other text or even a space in B20 the result is "No x in B20"...
i still wonder why you need the text "B20" like rml had noted.....

"rml" wrote:

Jesse james....will u populate this formula on a row or column...or this is
for one cell formula only ??

"Jesse" wrote:


I am using the following formula in cell I20, =IF(B20="x",E20*G20,"No
X in B 20") which works fine. I want to change it where in cell B20 I
can input any number, then the formual will do the E20*G20 and also
multiply by the number in B20. I would think that is pretty simple
for you Excel guru's but not for me :-).

Thanks!

Jess


  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default I would like a little help with a formula, please


THANKS to "everyone"! Everyone gave a good example of the formula and
I'll play with them to obtain the one I like best. I will be using
this in several rows, but it will always be the same formula, just
different numbers in each column. The "No X in B20" thing is just to
tell whomever is using the sheet, that they need some input in B20 in
order to get their answer. I will change the X to #. Have to make it
simple for simple minds.

Again, THANKS for your help, you guys and gals are great.

Have a great week............

Jess n Milton, FL

On Mon, 13 Nov 2006 13:11:28 -0600, Jesse
wrote:


I am using the following formula in cell I20, =IF(B20="x",E20*G20,"No
X in B 20") which works fine. I want to change it where in cell B20 I
can input any number, then the formual will do the E20*G20 and also
multiply by the number in B20. I would think that is pretty simple
for you Excel guru's but not for me :-).

Thanks!

Jess

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
Reusing formula Tony29 Excel Discussion (Misc queries) 7 September 7th 06 03:34 AM
Dynamic Range with unused formula messing up x axis on dynamic graph [email protected] Charts and Charting in Excel 2 February 2nd 06 08:02 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM


All times are GMT +1. The time now is 12:43 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"