+ Reply to Thread
Results 1 to 19 of 19

Budget sheet formula

  1. #1
    Registered User
    Join Date
    09-09-2018
    Location
    Alaska
    MS-Off Ver
    365 excel
    Posts
    11

    Budget sheet formula

    So what i am trying to do is write a formula so that when I enter a word lets say mortgage into cell a1 from sheet 2 it will take the amount that corresponds to mortgage which will be in cell a2 on sheet 2 and add that number into a1 on sheet 1. I am wanting a list so mortgage utilities phone water. Anytime I type in one of those words it knows where to add on sheet one.

  2. #2
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Budget sheet formula

    Sounds like you want vlookup, or index and match.

    =VLOOKUP(A2,Sheet2!$A$2:$B$100,2,0)

    Sheet2 column A should contain your list of expense types, sheet 2 column B should contain the corresponding regular $ amount for each.

    The formula in B2 of sheet 1 will give you the $ amount from sheet2 that corresponds to the expense type entered in A2.

    To save typing, you could also use column A of sheet2 to create a data validation drop down list.

  3. #3
    Registered User
    Join Date
    09-09-2018
    Location
    Alaska
    MS-Off Ver
    365 excel
    Posts
    11
    I cant get that to work. For some reason i cant upload a picture. Maybe this will help.

    Sheet2 is basically a checkbook register. So sheet 2 column e4 is category ie grocery, mortgage, credit card. Column f4 is withdraw column g4 is deposit. The amounts will rarely be the same example credit card might be 5 this month 10 next month.

    So i need to be able to enter a category type in e4 sheet 2. Which has a varying dollar amount entered into f4 a have it know that credit card means take f4 sheet 2 and adjust total in g25 sheet one.

    Those are the actual cell numbers

    Sorry if i am being redundant. I really appreciate your help

  4. #4
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Budget sheet formula

    It would be easier if you could upload a sample workbook, make it as close as possible to your actual one, but using fictional data to substitute any confidential / personal details.

    To attach a file, click the Go Advanced button (bottom right), then scroll down a bit and look for the 'Manage Attachments' link (use the link, not the paperclip icon, that is broken).

    Highlight the cells where the formula should go, and type in the results that you expect to see based on the other data in the workbook.

  5. #5
    Registered User
    Join Date
    09-09-2018
    Location
    Alaska
    MS-Off Ver
    365 excel
    Posts
    11

    Re: Budget sheet formula

    It says I am not allowed to post links so hopefully the attachment is actually attached. cant see it anywhere except when I click on manage attachments.
    Attached Files Attached Files

  6. #6
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,926

    Re: Budget sheet formula

    You uploaded correctly, thank you.

    The restriction on adding links (if you have less that 10 posts), is an attempt to help prevent spam. Sorry for the inconvenience (but attached files are always better anyway)
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  7. #7
    Forum Expert shukla.ankur281190's Avatar
    Join Date
    05-17-2014
    Location
    Lucknow, India
    MS-Off Ver
    Office 365
    Posts
    3,935

    Re: Budget sheet formula

    You must ensure that in both sheet text same like Extra Income in sheet Budget but Extra inc. in sheet Register which is wrong, first change Extra inc. to Extra Income then use below formula as you are supposing a result in number.

    M6
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    If I helped, Don't forget to add reputation (click on the little star ★ at bottom of this post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)

  8. #8
    Registered User
    Join Date
    09-09-2018
    Location
    Alaska
    MS-Off Ver
    365 excel
    Posts
    11

    Re: Budget sheet formula

    I might just not be doing it correctly but I don't think that is what I am looking for. I don't want to have to enter a formula each time. I am wanting to type list of 20ish words into the category cell (e4 sheet 2 the link is above) and have the corresponding amounts from cells f4 and g4 sheet2 be deducted from the matching category on sheet 1.

  9. #9
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Budget sheet formula

    You don't have to enter it each time, just once, then click and hold on the bottom right corner of the cell with the formula and drag down, it will fill the next one automatically.

  10. #10
    Registered User
    Join Date
    09-09-2018
    Location
    Alaska
    MS-Off Ver
    365 excel
    Posts
    11

    Re: Budget sheet formula

    Right I get that but this only affects that one cell I need to be able to type extra income 3 or 5 or 10 cells down and an amount into f column or g column and have it register in sheet one. I have attached a copy of the register. maybe it will make more since. You guys are awesome thank you for all the help. the register will never be the same I need it to auto populate whenever I type a word in the category section.
    Attached Files Attached Files

  11. #11
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Budget sheet formula

    That is what it will do, you haven't entered 'extra income' into the register, which is why there is a zero result.

    Breaking down the formula =SUMIFS(Register!G:G,Register!E:E,Budget!K6)

    This will take whatever is in Budget!K6 (Extra Income) and look for each and every occurence of that in column E of the Register sheet, that get the corresponding figures from column G of the Register sheet and add them together, it doesn't matter if it is 10 rows down, 10 rows up, or 1000 rows down, it will still be included it the description matches.

    If I'm following you correctly, it looks as if you want any deposit / credit entered that has a description other than 'Income' to be classed as extra income?

    In which case try

    =SUMIFS(Register!G:G,Register!E:E,"<>Income*")

    When you enter a formula that works to criteria, you have to explicitly tell it what to look for, or in this case what to ignore. The formula cannot assume that anything which doesn't say 'Income' is actually 'Extra Income' unless you provide it with that information.

  12. #12
    Registered User
    Join Date
    09-09-2018
    Location
    Alaska
    MS-Off Ver
    365 excel
    Posts
    11

    Re: Budget sheet formula

    Ok that makes since. What cell do i put the formula in and do i make a new formula for when it's say groceries and mortgage or utilities.

  13. #13
    Registered User
    Join Date
    09-09-2018
    Location
    Alaska
    MS-Off Ver
    365 excel
    Posts
    11

    Re: Budget sheet formula

    I wish this had a video conference feature lol

  14. #14
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Budget sheet formula

    That formula would be for M6, extra income.

    I have just noticed that you have 2 cells for extra income in the budget sheet, but nothing to say which records in the register should be associated with which extra income cell.

    For anything like groceries, utilities, etc. Use the formula already provided in post #6. This will work as long as the description in the budget sheet is the same as the one in the register.

  15. #15
    Registered User
    Join Date
    09-09-2018
    Location
    Alaska
    MS-Off Ver
    365 excel
    Posts
    11

    Re: Budget sheet formula

    Yippy I got it working... sort of. For some reason when the amount is populated to "budget" it changes all my font size and type and field color for that cell and formatting. How do I get the formula to register F column on "register" the same as it does G.

  16. #16
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Budget sheet formula

    Not sure how that is happening. The only thing that would affect any of those things when the amount is changed would be conditional formatting, but there is none in the test file.
    How do I get the formula to register F column on "register" the same as it does G.
    Try changing part of the formula, from Register!G:G to Register!F:F

  17. #17
    Registered User
    Join Date
    09-09-2018
    Location
    Alaska
    MS-Off Ver
    365 excel
    Posts
    11

    Re: Budget sheet formula

    It works if i do f or g but not both it says that doesn't make since. Or something like that anyway. I'm not worried about the font it only does it half the time and stays once I change it back.

  18. #18
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Budget sheet formula

    You can only use one column in the formula, which should be adequate for most of your sheet.

    =SUMIFS(Register!F:F for anything that will be a definite outgoing payment, or SUMIFS(Register!G:G for anything that will be definite income.

    If you need both then you could add the 2 together, although, as all of your entries are positive values, you would actually need to subtract to get the correct result.

    =SUMIFS(Register!G:G,...)-SUMIFS(Register!F:F,...)

  19. #19
    Registered User
    Join Date
    09-09-2018
    Location
    Alaska
    MS-Off Ver
    365 excel
    Posts
    11

    Re: Budget sheet formula

    Got it all working like a charm thank you guys for all the help. I greatly appreciate it.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. budget sheet formula
    By steggy in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 02-13-2018, 06:03 AM
  2. Replies: 2
    Last Post: 03-15-2017, 03:14 AM
  3. Nested IF statement to show under budget, within a % of budget, over budget
    By clafleur in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 10-15-2015, 10:36 AM
  4. budget formula. 2 different formulas for yearly budget SUMIF?
    By italianstallion in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-04-2013, 05:20 AM
  5. Help with Budget Sheet
    By LadyRogue in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 11-01-2012, 08:24 PM
  6. formula to auto fill date and amounts from checkbook register to budget sheet
    By Magneticwood in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-02-2012, 06:30 AM
  7. Pulling weekly budget data into monthly budget
    By MarkRabbit in forum Excel General
    Replies: 4
    Last Post: 10-19-2008, 04:28 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1