0

I'm trying to run a running total where if the conditions are met with "Won" or "Placed" it will automatically run the sum.

However part of this formula is not working the way I would like as it's displaying FALSE in the column when "Won" is the selection.

When "Placed" is selected is runs the sum fine.

Original formula:

=IF(I3="Won",(E3*(G3-1))*0.95,-E3)

Formula with Placed added:

=IF(OR(I3="Won"),OR(I3="Placed"),(F3*(H3-1))*0.95)

Sorry if I haven't explained this well as I'm not very good with excel! Any help would be greatly appreciated!!

jcbermu
17.9k2 gold badges56 silver badges61 bronze badges
asked Aug 8, 2016 at 11:13

1 Answer 1

1

The contents of the OR must be within the formula, not separated, and you need to specify something for the else case: =IF(OR(I3="Won",I3="Placed"),(F3*(H3-1))*0.95, <else>)

Your version is basically saying =IF(OR(I3="Won"), then show OR(I3="Placed") ( which is true or false) and else (F3*(H3-1))*0.95

answered Aug 8, 2016 at 11:15
0

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.