Beginner to Excel - Can you please help me solve this problem? (2 questions)

wiserkid

New Member
Joined
Feb 6, 2015
Messages
4
.1 I'm trying to find a formula that matches the suitability of each worker for the group to which the worker is assigned.

Suitability rating
Group 1 Group 2 Group 3 Group 4
Assigned to Worker 1 2 3 4
4 1 9 8 6 8
1 2 10 0 5 6
3 3 5 8 10 5



Considered using vlookup, hlookup - but just not sure how they work exactly

2. Number of ads Price per ad
1-5 12k
6-10 11k
11-20 10k
21 and higher 9k

I'm trying to find a formula that yields the total cost of purchasing any number of ads. For example, if you buy 8 ads, you pay $11,000 per ad, but if you buy 14 ads, you pay$10,000 per ad.
 
Last edited:

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Answer to your second question.

Copy and paste in A1
<style type="text/css">
table.tableizer-table {
border: 1px solid #CCC; font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.tableizer-table td {
padding: 4px;
margin: 3px;
border: 1px solid #ccc;
}
.tableizer-table th {
background-color: #104E8B;
color: #FFF;
font-weight: bold;
}
</style><table class="tableizer-table">
<tr class="tableizer-firstrow"><th>5</th><th>12000</th><th> </th><th> </th></tr>
<tr><td>10</td><td>11000</td><td> </td><td> </td></tr>
<tr><td>20</td><td>10000</td><td> </td><td> </td></tr>
<tr><td>21</td><td>9000</td><td>INPUT QTY BELOW</td><td>RESULTS BELOW</td></tr>
</table>
 
Last edited:
Upvote 0
I don't know what the first part means.


Excel 2010
ABCD
1AdsPriceQtyCost
20$12,0005$60,000
36$11,000
411$10,000
521$9,000
Sheet5
Cell Formulas
RangeFormula
D2=LOOKUP($C2,$A$2:$A$5,$B$2:$B$5)*C2
 
Upvote 0

Forum statistics

Threads
1,215,260
Messages
6,123,926
Members
449,135
Latest member
NickWBA

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