Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
las
 
Posts: n/a
Default excel formula

if I have a formula that reads:

=IF(D22="no",0,IF(D22="yes",F16))

How combine it whith this formula so that both will happen at the same time:

=IF(B10*0.05<D10,B10*0.05,D10)

thanks for any help :)
las


  #2   Report Post  
Posted to microsoft.public.excel.newusers
Bernard Liengme
 
Posts: n/a
Default excel formula

Please elaborate
D22 Yes No
B10*0.05 <D10 case a case b
=D10 case c case d
Tell us what is to happen in each case
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"las" wrote in message
...
if I have a formula that reads:

=IF(D22="no",0,IF(D22="yes",F16))

How combine it whith this formula so that both will happen at the same
time:

=IF(B10*0.05<D10,B10*0.05,D10)

thanks for any help :)
las




  #3   Report Post  
Posted to microsoft.public.excel.newusers
las
 
Posts: n/a
Default excel formula

What I am trying to have happen is create formula for a refund policy. I
want to be able to say if d22 =yes than calculate the fee from the other
formula and if d22 =no than they are not charged a fee and get a full refund.

does this help at all?

"Bernard Liengme" wrote:

Please elaborate
D22 Yes No
B10*0.05 <D10 case a case b
=D10 case c case d
Tell us what is to happen in each case
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"las" wrote in message
...
if I have a formula that reads:

=IF(D22="no",0,IF(D22="yes",F16))

How combine it whith this formula so that both will happen at the same
time:

=IF(B10*0.05<D10,B10*0.05,D10)

thanks for any help :)
las





  #4   Report Post  
Posted to microsoft.public.excel.newusers
kassie
 
Posts: n/a
Default excel formula

=IF(D22="Yes",IF(B10*0.05<D10,B10*0.05,D10),IF(D22 ="No",0,"")) should do the
trick


"las" wrote:

What I am trying to have happen is create formula for a refund policy. I
want to be able to say if d22 =yes than calculate the fee from the other
formula and if d22 =no than they are not charged a fee and get a full refund.

does this help at all?

"Bernard Liengme" wrote:

Please elaborate
D22 Yes No
B10*0.05 <D10 case a case b
=D10 case c case d
Tell us what is to happen in each case
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"las" wrote in message
...
if I have a formula that reads:

=IF(D22="no",0,IF(D22="yes",F16))

How combine it whith this formula so that both will happen at the same
time:

=IF(B10*0.05<D10,B10*0.05,D10)

thanks for any help :)
las





  #5   Report Post  
Posted to microsoft.public.excel.newusers
las
 
Posts: n/a
Default excel formula

thank you so much this seems to have done the trick :)

las

"kassie" wrote:

=IF(D22="Yes",IF(B10*0.05<D10,B10*0.05,D10),IF(D22 ="No",0,"")) should do the
trick


"las" wrote:

What I am trying to have happen is create formula for a refund policy. I
want to be able to say if d22 =yes than calculate the fee from the other
formula and if d22 =no than they are not charged a fee and get a full refund.

does this help at all?

"Bernard Liengme" wrote:

Please elaborate
D22 Yes No
B10*0.05 <D10 case a case b
=D10 case c case d
Tell us what is to happen in each case
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"las" wrote in message
...
if I have a formula that reads:

=IF(D22="no",0,IF(D22="yes",F16))

How combine it whith this formula so that both will happen at the same
time:

=IF(B10*0.05<D10,B10*0.05,D10)

thanks for any help :)
las







  #6   Report Post  
Posted to microsoft.public.excel.newusers
las
 
Posts: n/a
Default excel formula

Kassie

not to sound silly because the formula works but what does the double
quotation mark stand for in the formula?

Thanks
las

"kassie" wrote:

=IF(D22="Yes",IF(B10*0.05<D10,B10*0.05,D10),IF(D22 ="No",0,"")) should do the
trick


"las" wrote:

What I am trying to have happen is create formula for a refund policy. I
want to be able to say if d22 =yes than calculate the fee from the other
formula and if d22 =no than they are not charged a fee and get a full refund.

does this help at all?

"Bernard Liengme" wrote:

Please elaborate
D22 Yes No
B10*0.05 <D10 case a case b
=D10 case c case d
Tell us what is to happen in each case
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"las" wrote in message
...
if I have a formula that reads:

=IF(D22="no",0,IF(D22="yes",F16))

How combine it whith this formula so that both will happen at the same
time:

=IF(B10*0.05<D10,B10*0.05,D10)

thanks for any help :)
las





  #7   Report Post  
Posted to microsoft.public.excel.newusers
BruceP
 
Posts: n/a
Default excel formula


las,

That just means that you want to keep the cell blank if none of the
previous conditions in the formula are true. The way the IF function
works is:

IF(-condition to test-,-what to write if true-,-what to write if
false-)

For example:

IF(42,"YES","NO")

Hope this helps.

Bruce


--
BruceP
------------------------------------------------------------------------
BruceP's Profile: http://www.excelforum.com/member.php...o&userid=33653
View this thread: http://www.excelforum.com/showthread...hreadid=538196

  #8   Report Post  
Posted to microsoft.public.excel.newusers
John
 
Posts: n/a
Default excel formula

las wrote:

What I am trying to have happen is create formula for a refund policy. I
want to be able to say if d22 =yes than calculate the fee from the other
formula and if d22 =no than they are not charged a fee and get a full refund.

does this help at all?

"Bernard Liengme" wrote:

In old basic which is easier to read and keep track of than excel-ese IMHO.

Select Case d22
Case "Yes":
(You fill in here what happens if d22 is yes)
Case "No":
(You Fill in here what happens if it's no)
Case Else:
(You fill in here what to do if it's neither)
END Select

JOhn
  #9   Report Post  
Posted to microsoft.public.excel.newusers
kassie
 
Posts: n/a
Default excel formula

You cannot combine the two, since they give totally unrelated results. The
first givres either an "0" or the value of F16, the other either B10*0.05 or
D10. As such, they should be in seperate cells?

"las" wrote:

if I have a formula that reads:

=IF(D22="no",0,IF(D22="yes",F16))

How combine it whith this formula so that both will happen at the same time:

=IF(B10*0.05<D10,B10*0.05,D10)

thanks for any help :)
las


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
Excel displaying formulae as constant and not calculating formula gpbell Excel Worksheet Functions 2 February 16th 06 08:26 AM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
How can i get an If formula in excel to edit another cell? Jimmy Hoffa Excel Worksheet Functions 2 August 16th 05 05:53 PM
converting formula from lotus.123 to excel zaharah Excel Worksheet Functions 2 July 27th 05 03:04 PM
Formula Integrity Not Preserved During Sort in Excel 2000 Kevin Excel Discussion (Misc queries) 1 April 15th 05 10:26 PM


All times are GMT +1. The time now is 10:14 AM.

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"