ifnested ifs

Forum home » Delegate support and help forum » Microsoft Excel Training and help » IF/Nested IFs

IF/Nested IFs

resolvedResolved · High Priority · Version 365

Chantelle has attended:
Excel Advanced course

IF/Nested IFs

Hi,
I'm wondering if you can help with a IF/Nested IF statement I'm struggling with at the moment.

I need to calculate how much commission is to be paid to the consultant, based on the % margin made.

IF the % margin made is greater than 15% - the consultant receives 2.5% of the total cost
IF the % margin made is between 10% & 15% - the consultant receives 2.25% of the total cost
IF the % margin made is less than 10% - the consultant receives 0% of the total cost

so far I have 2 separate columns of:
for the 2.5%: =IF(H7>15%,E7*0.025,0)
for the 2.25%: =IF(OR(H8>=10%,H8<=15%),E8*0.0225,0)
can these be merged together to also contain the <10%

Many Thanks
Chantelle

RE: IF/Nested IFs

Hi Chantelle,

Thank you for the forum question.

Try:


=IF(H7>15%,E7*0.025,IF(H7>=10%,E8*0.0225,0))

Or if you have a new version of the Excel application, you can also use the IFS function.

=ifs(H7>15%,E7*0.025,H7>=10%,E8*0.0225,true,0)





Kind regards

Jens Bonde
Microsoft Office Specialist Trainer

Tel: 0207 987 3777
STL - https://www.stl-training.co.uk
98%+ recommend us

London's leader with UK wide delivery in Microsoft Office training and management training to global brands, FTSE 100, SME's and the public sector

 

Training courses

 

Training information:

See also:

Welcome. Please choose your application (eg. Excel) and then post your question.

Our Microsoft Qualified trainers will then respond within 24 hours (working days).

Frequently Asked Questions
What does 'Resolved' mean?

Any suggestions, questions or comments? Please post in the Improve the forum thread.


 

Excel tip:

Applying and removing border from cell in Excel 2010

Did you know the shortcut key for applying and removing the outline border for a cell?

CTRL+SHIFT+& Applies the outline border to the selected cells.
CTRL+SHIFT_ Removes the outline border from the selected cells.

View all Excel hints and tips


Server loaded in 0.19 secs.