Developing a Budget- Need a formula to help increase the organization

Primo

New Member
Joined
Jul 1, 2013
Messages
9
Hey Mr. Excel guy, I hope all is well today.

I a developing a budget for myself and on the right side of the spreadsheet is a column of general expenses in text. Next to those individual expenses are numbers 1-10. I have Column C designated for the appropriate 'expense ID' that will come from that list on the right side of the spreadsheet. In column D, I would like to be able to type in the number (For example, '1') and have it pull into Column C the appropriate expense name that it correlates with on the right side of the spreadsheet.

I hope this makes clear sense. Thank you a ton for the help!!

Have an awesome day. Please let me know what you find!

Cheers,

Primo
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Try something like this:


Excel 2012
ABCDEFG
1DataDataExpense AutofillType # HereExpense ClassificationDescription
2DataDataExpense111Expense1
3DataDataExpense222Expense2
4DataDataExpense553Expense3
5DataDataExpense114Expense4
6DataData 5Expense5
Sheet1
Cell Formulas
RangeFormula
C2=IFERROR(INDEX($F$2:G$6,MATCH(D2, $F$2:$F$6, 0), 2), "")
C3=IFERROR(INDEX($F$2:G$6,MATCH(D3, $F$2:$F$6, 0), 2), "")
C4=IFERROR(INDEX($F$2:G$6,MATCH(D4, $F$2:$F$6, 0), 2), "")
C5=IFERROR(INDEX($F$2:G$6,MATCH(D5, $F$2:$F$6, 0), 2), "")
C6=IFERROR(INDEX($F$2:G$6,MATCH(D6, $F$2:$F$6, 0), 2), "")
 
Upvote 0

Forum statistics

Threads
1,214,981
Messages
6,122,565
Members
449,089
Latest member
Motoracer88

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