Traceelewis71

New Member
Joined
Dec 5, 2017
Messages
12
I dont know what ive done wrong to my index match statement. I need to get monthly earning into a column. each person has 12 months in a row. On a separate spreadsheet I have the dollar amounts per month for each person. I need an index match statement that will put the 9.50% in the column. please help
Month9.50%Person ID
1?A02257
2A02257
3A02257
4A02257
5
6
7
8
9
10
11
12

<tbody>
</tbody>

Monthperson ID9.5% of Gross
1A0225789.63
2A0225784.59
3A0225785.19
4A0225794.59
5A0225782.33
6A0225795.16
7A0225789.98
8A0225786.88
9A0225795.16
10A0225782.75
11A0225782.75
12A0225791.02

<colgroup><col span="2"><col span="2"></colgroup><tbody>
</tbody>
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Assuming the data are in Sheet2 columns A:C, headers in row 1, maybe this array formula in Sheet1 B2 copied down

=IF(C2="","",INDEX(Sheet2!C$2:C$100,MATCH(1,IF(Sheet2!A$2:A$100=A2,IF(Sheet2!B$2:B$100=C2,1)),0)))
confirmed with Ctrl+Shift+Enter, not just Enter

Or

Regular formula in B2 copied down
=IF(C2="","",SUMIFS(Sheet2!C:C,Sheet2!A:A,A2,Sheet2!B:B,C2))

M.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,685
Members
449,117
Latest member
Aaagu

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