Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This one works fine, =IF(G2="S",H2*0.1,H2*0.05) But if I want to add in
another for "W" this is what I am trying, but it is not working.... =IF(G2=("W",H2*0.15),("S",H2*0.1),H2*0.05) Help needed and very appreciated! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=IF(G2="S",H2*.01,IF(G2="W",H2*.15,H2*.05)) HTH, Elkar "SweetSin80" wrote: This one works fine, =IF(G2="S",H2*0.1,H2*0.05) But if I want to add in another for "W" this is what I am trying, but it is not working.... =IF(G2=("W",H2*0.15),("S",H2*0.1),H2*0.05) Help needed and very appreciated! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try
=IF(G2="W",H2*0.15,i,if(G2="S",H2*0.1,H2*0.05)) "SweetSin80" wrote: This one works fine, =IF(G2="S",H2*0.1,H2*0.05) But if I want to add in another for "W" this is what I am trying, but it is not working.... =IF(G2=("W",H2*0.15),("S",H2*0.1),H2*0.05) Help needed and very appreciated! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Match then lookup | Excel Worksheet Functions | |||
Date stamp formula results? Tricky problem? | Excel Discussion (Misc queries) | |||
adding row to forumla | Excel Discussion (Misc queries) | |||
Creating a check mark box | Setting up and Configuration of Excel | |||
Match / Vlookup within an Array formula | Excel Discussion (Misc queries) |