Help an amateur

Truebluedan

New Member
Joined
Aug 11, 2021
Messages
7
Office Version
  1. 2013
Platform
  1. Windows
Morning

This is really stumping me and if possible could somebody help me the formula.I’ve attached a screenshot to make it easier. Each person in Column A is given a monetary amount based on what tier they work in (column B). Each tier has a value if target is achieved.

Tier 1 €50
Tier 2 €150
Tier 3 €225

Each person needs to hit a minimum in column c and d to receive the reward.

Column C target is greater than 16 whilst column D target is greater than 24.54%. Column E would then return the monetary value achieved. Anybody not hitting either of the targets would receive 0.

Can anybody help please?

Thanks

Dan
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
If your table structure is as below, you can use "=IF(AND(C2>16,D2>24.54%),B2,0)".

Date Exp.xlsb
ABCDE
1NameTier Value Target 1Target 2Reward
2Jack€ 501726.50%€ 50
3John€ 1501133.00%€ 0
4Simon€ 2252315.00%€ 0
5Dave€ 2253329.00%€ 225
6Sarah€ 1501326.00%€ 0
7Jane€ 501719.00%€ 0
8Jessica€ 2251940.00%€ 225
Sheet3
Cell Formulas
RangeFormula
E2:E8E2=IF(AND(C2>16,D2>24.54%),B2,0)
 
Upvote 0
If your table structure is as below, you can use "=IF(AND(C2>16,D2>24.54%),B2,0)".

Date Exp.xlsb
ABCDE
1NameTier Value Target 1Target 2Reward
2Jack€ 501726.50%€ 50
3John€ 1501133.00%€ 0
4Simon€ 2252315.00%€ 0
5Dave€ 2253329.00%€ 225
6Sarah€ 1501326.00%€ 0
7Jane€ 501719.00%€ 0
8Jessica€ 2251940.00%€ 225
Sheet3
Cell Formulas
RangeFormula
E2:E8E2=IF(AND(C2>16,D2>24.54%),B2,0)
Thanks JW00 really helpful

If the tiers in col B are just number for example it will be said person name In A then in B it would just be what tier they fall under not the value, how would I go about that?
 
Upvote 0
This should work "=IF(AND(C2>16,D2>24.54%),IF(B2=1,50,IF(B2=2,150,225)),0)".
 
Upvote 0
Solution

Forum statistics

Threads
1,214,866
Messages
6,121,996
Members
449,060
Latest member
mtsheetz

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top