What am I looking for?

jndickin

New Member
Joined
May 26, 2004
Messages
11
Office Version
  1. 2016
Platform
  1. Windows
I cannot figure out how to express what I'm looking for in a manner which will elicit the desired response from Google.

I turn to you to tell me what I'm looking for after this brief (fingers crossed) description.

I have a budget which starts out looking like this:

JANELECTRIC
$30.00​
JANGAS
$44.00​
JANRENT
$994.00​
JANGROCERIES
$100.00​
JANGARBAGE
$10.00​
JANMOBILE
$60.00​
JANCABLE
$80.00​
FEBELECTRIC
$30.00​
FEBGAS
$44.00​
FEBRENT
$994.00​
FEBGROCERIES
$100.00​
FEBGARBAGE
$10.00​
FEBMOBILE
$60.00​
FEBCABLE
$80.00​
MCHELECTRIC
$30.00​
MCHGAS
$44.00​
MCHRENT
$994.00​
MCHGROCERIES
$100.00​
MCHGARBAGE
$10.00​
MCHMOBILE
$60.00​
MCHCABLE
$80.00​



As time moves on, I replace these budget numbers with actual amounts. What kind of formula do I need to automatically replace all going-forward budget numbers with the last actual amount I've entered above?

Have I been able to communicate this clearly enough for an answer?

Thanks for your help!
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Jn Let's get the ball rolling. I find this confusing. Then again, I find most things confusing. So you replace the budget numbers with actual numbers. Now your problem is you want to replace budget numbers with actual numbers automatically with a formula. I am going to suggest you download XL2BB app so you can show us what your input looks like and what you expect your output will look like.
 
Upvote 0
Jn Let's get the ball rolling. I find this confusing. Then again, I find most things confusing. So you replace the budget numbers with actual numbers. Now your problem is you want to replace budget numbers with actual numbers automatically with a formula. I am going to suggest you download XL2BB app so you can show us what your input looks like and what you expect your output will look like.
Shoot! How do I get past "This file is not supported in Protected View?"
 
Upvote 0
I kinda feel like this might make it worse, but here goes.

Book1
ABCDEFGHIJKLMN
1ORIGINAL BUDGETDESIRED RESULT AFTER JANUARYDESIRED RESULT AFTER JANUARY
2
3MonthPayeeAmountMonthPayeeAmountMonthPayeeAmount
4JANELECTRIC$30.00JANELECTRIC$33.00As actuals are input in January . . .JANELECTRIC$33.00
5JANGAS$44.00JANGAS$44.00JANGAS$44.00
6JANRENT$994.00JANRENT$994.00JANRENT$994.00
7JANGROCERIES$100.00JANGROCERIES$112.00JANGROCERIES$100.00
8JANGARBAGE$10.00JANGARBAGE$20.00JANGARBAGE$20.00
9JANMOBILE$60.00JANMOBILE$60.00JANMOBILE$60.00
10JANCABLE$80.00JANCABLE$80.00JANCABLE$80.00
11
12FEBELECTRIC$30.00 These s/b formulas that pick up the most recent entry above for the corresponding PayeeFEBELECTRIC$33.00 . . . any changes are reflected in the months following because the formula is picking up the most recent entry above corresponding to the PayeeFEBELECTRIC$33.00And--as actuals are input in the next month . . .
13FEBGAS$44.00FEBGAS$44.00FEBGAS$44.00
14FEBRENT$994.00FEBRENT$994.00FEBRENT$1,000.00
15FEBGROCERIES$100.00FEBGROCERIES$112.00FEBGROCERIES$80.00
16FEBGARBAGE$10.00FEBGARBAGE$20.00FEBGARBAGE$10.00
17FEBMOBILE$60.00FEBMOBILE$60.00FEBMOBILE$60.00
18FEBCABLE$80.00FEBCABLE$80.00FEBCABLE$80.00
19
20MCHELECTRIC$30.00MCHELECTRIC$33.00MCHELECTRIC$33.00 . . . any changes are reflected in the months following because the formula is picking up the most recent entry above corresponding to the Payee
21MCHGAS$44.00MCHGAS$44.00MCHGAS$44.00
22MCHRENT$994.00MCHRENT$994.00MCHRENT$1,000.00
23MCHGROCERIES$100.00MCHGROCERIES$112.00MCHGROCERIES$80.00
24MCHGARBAGE$10.00MCHGARBAGE$20.00MCHGARBAGE$10.00
25MCHMOBILE$60.00MCHMOBILE$60.00MCHMOBILE$60.00
26MCHCABLE$80.00MCHCABLE$80.00MCHCABLE$80.00
Sheet1
 
Upvote 0
See if this does what you want. I have assumed the JAN figures are actual. As the FEB 'Actual' figures are entered to replace the existing formulas for FEB, the MCH ( & further months) figures will automatically update to the most recent values.

23 08 13.xlsm
ABC
3MonthPayeeAmount
4JANELECTRIC30
5JANGAS44
6JANRENT994
7JANGROCERIES100
8JANGARBAGE10
9JANMOBILE60
10JANCABLE80
11
12FEBELECTRIC30
13FEBGAS44
14FEBRENT994
15FEBGROCERIES100
16FEBGARBAGE10
17FEBMOBILE60
18FEBCABLE80
19 
20MCHELECTRIC30
21MCHGAS44
22MCHRENT994
23MCHGROCERIES100
24MCHGARBAGE10
25MCHMOBILE60
26MCHCABLE80
Budget v Actual
Cell Formulas
RangeFormula
C12:C26C12=IF(B12="","",XLOOKUP(B12,B$4:B11,C$4:C11,,,-1))
 
Upvote 0
Well, I have certainly learned A LOT tonight! I have learned that I actually have Microsoft Office Professional Plus 2016, not 365--I changed my profile. I've learned that XLOOKUP is not available in 2016. I've learned that it will cost me some buckeroos to upgrade which I'm not inclined to do at this point in time--maybe later this month.

So . . . got anything that doesn't use the "oh so convenient" XLOOKUP? Maybe like an INDEX something?

Sorry about the misleading info. :( (Big sigh!)
 
Upvote 0
I actually have Microsoft Office Professional Plus 2016, not 365--I changed my profile.
OK, thanks for correcting.

So . . . got anything that doesn't use the "oh so convenient" XLOOKUP? Maybe like and INDEX something?
Sure ..

23 08 13.xlsm
ABC
3MonthPayeeAmount
4JANELECTRIC30
5JANGAS44
6JANRENT994
7JANGROCERIES100
8JANGARBAGE10
9JANMOBILE60
10JANCABLE80
11
12FEBELECTRIC30
13FEBGAS44
14FEBRENT994
15FEBGROCERIES100
16FEBGARBAGE10
17FEBMOBILE60
18FEBCABLE80
19 
20MCHELECTRIC30
21MCHGAS44
22MCHRENT994
23MCHGROCERIES100
24MCHGARBAGE10
25MCHMOBILE60
26MCHCABLE80
Budget v Actual (2)
Cell Formulas
RangeFormula
C12:C26C12=IF(B12="","",INDEX(C:C,AGGREGATE(14,6,ROW(C$4:C11)/(B$4:B11=B12),1)))
 
Upvote 1
Solution

Forum statistics

Threads
1,216,076
Messages
6,128,670
Members
449,463
Latest member
Jojomen56

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