How to create external reference in Excel to refer to another sheet or workbook

This short tutorial explains the basics of an external reference in Excel, and shows how to reference another sheet and workbook in your formulas.

When calculating data in Excel, you may often find yourself in a situation when you need to pull data from another worksheet or even from a different Excel file. Can you do that? Of course, you can. You just need to create a link between the worksheets (within the same workbook or in different workbooks) by using what is called an external cell reference or a link.

External reference in Excel is a reference to a cell or a range of cells outside the current worksheet. The main benefit of using an Excel external reference is that whenever the referenced cell(s) in another worksheet changes, the value returned by the external cell reference is automatically updated.

Although external references in Excel are very similar to cell references, there are a few important differences. In this tutorial, we'll start with the basics and show how to create various external reference types with detailed steps, screenshots and formula examples.

How to reference another sheet in Excel

To reference a cell or range of cells in another worksheet in the same workbook, put the worksheet name followed by an exclamation mark (!) before the cell address.

In other words, in an Excel reference to another worksheet, you use the following format:

Reference to an individual cell:

Sheet_name!Cell_address

For example, to refer to cell A1 in Sheet2, you type Sheet2!A1.

Reference to a range of cells:

Sheet_name!First_cell:Last_cell

For example, to refer to cells A1:A10 in Sheet2, you type Sheet2!A1:A10.

Note. If the worksheet name includes spaces or non-alphabetical characters, you must enclose it in single quotation marks. For example, an external reference to cell A1 in a worksheet named Project Milestones should read as follows: 'Project Milestones'!A1.

In a real-life formula, which multiplies the value in cell A1 in 'Project Milestones' sheet by 10, an Excel sheet reference looks like this:

='Project Milestones'!A1*10

Creating a reference to another sheet in Excel

When writing a formula that refers to cells in another worksheet, you can of course type that other sheet name followed by an exclamation point and a cell reference manually, but this would be a slow and error-prone way.

A better way is point to the cell(s) in another sheet that you want the formula to refer to, and let Excel take care of the correct syntax of your sheet reference. To have Excel insert a reference to another sheet in your formula, do the following:

  1. Start typing a formula either in a destination cell or in the formula bar.
  2. When it comes to adding a reference to another worksheet, switch to that sheet and select a cell or a range of cells you want to refer to.
  3. Finish typing the formula and press the Enter key to complete it.

For example, if you have a list of sales figures in sheet Sales and you want to calculate the Value Added Tax (19%) for each product in another sheet named VAT, proceed in the following way:

  • Start typing the formula =19%* in cell B2 on sheet VAT.
  • Switch to sheet Sales, and click on cell B2 there. Excel will immediately insert an external reference to that cell, as shown in the following screenshot:
    Creating a reference to another sheet in Excel
  • Press Enter to complete the formula.

Note. When adding an Excel reference to another sheet using the above method, by default Microsoft Excel adds a relative reference (with no $ sign). So, in the above example, you can just copy the formula to other cells in column B on sheet VAT, the cell references will adjust for each row, and you will have VAT for each product correctly calculated.

In a similar manner, you can reference a range of cells in another sheet. The only difference is that you select multiple cells on the source worksheet. For example, to find out the total of sales in cells B2:B5 on sheet Sales, you would enter the following formula:

=SUM(Sales!B2:B5)
Creating a reference to a range a cells in another worksheet

This is how you reference another sheet in Excel. And now, let's see how you can refer to cells from a different workbook.

How to reference another workbook in Excel

In Microsoft Excel formulas, external references to another workbook are displayed in two ways, depending on whether the source workbook is open or closed.

External reference to an open workbook

When the source workbook is open, an Excel external reference includes the workbook name in square brackets (including the file extension), followed by the sheet name, exclamation point (!), and the referenced cell or a range of cells. In other words, you use the following reference format for an open workbook reference:

[Workbook_name]Sheet_name!Cell_address

For example, here's an external reference to cells B2:B5 on sheet Jan in the workbook named Sales.xlsx:

[Sales.xlsx]Jan!B2:B5

If you want, say, to calculate the sum of those cells, the formula with the workbook reference would look as follows:

=SUM([Sales.xlsx]Jan!B2:B5)

External reference to a closed workbook

When you reference another workbook in Excel, that other workbook does not necessarily need to be open. If the source workbook is closed, you must add the entire path to your external reference.

For example, to add up cells B2:B5 in the Jan sheet from Sales.xlsx workbook that resides within the Reports folder on drive D, you write the following formula:

=SUM(D:\Reports\[Sales.xlsx]Jan!B2:B5)

Here's a breakdown of the reference parts:

  • File Path. It points to the drive and directory in which your Excel file is stored (D:\Reports\ in this example).
  • Workbook Name. It includes the file extension (.xlsx, .xls, or .xslm) and is always enclosed in square brackets, like [Sales.xlsx] in the above formula.
  • Sheet Name. This part of the Excel external reference includes the sheet name followed by an exclamation point where the referenced cell(s) is located (Jan! in this example).
  • Cell Reference. It points to the actual cell or a range of cells referenced in your formula.

If you've created an reference to another workbook when that workbook was open, and after that you closed the source workbook, your external workbook reference will get updated automatically to include the entire path.

Note. If either the workbook name or sheet name, or both, include spaces or any non-alphabetical characters, you must enclose the path in single quotation marks. For example:

=SUM('[Year budget.xlsx]Jan'!B2:B5)

=SUM('[Sales.xlsx]Jan sales'!B2:B5)

=SUM('D:\Reports\[Sales.xlsx]Jan sales'!B2:B5)

Making a reference to another workbook in Excel

As is the case with creating an Excel formula that references another sheet, you don't have to type a reference to a different workbook manually. Just switch to the other workbook when entering your formula, and select a cell or a range of cells you want to refer to. Microsoft Excel will take care of the rest:
Making a reference to another Excel workbook

Notes:

  • When creating a reference to another workbook by selecting the cell(s) in it, Excel always inserts absolute cell references. If you intend to copy the newly created formula to other cells, be sure to remove the dollar sign ($) from the cell references to turn them into relative or mixed references, depending on your purposes.
  • If selecting a cell or range in the referenced workbook does not automatically create a reference in the formula, most likely the two files are open in different instances of Excel. To check this, open Task Manager and see how many Microsoft Excel instances are running. If more than one, expand each instance to view which files are nested there. To fix the issue, close one file (and instance), and then open it again from the other file.

Reference to a defined name in the same or another workbook

To make an Excel external reference more compact, you can create a defined name in the source sheet, and then refer to that name from another sheet that resides in the same workbook or in a different workbook.

Creating a name in Excel

To create a name in Excel, select all the cells you want to include, and then either go to the Formulas tab > Defined names group and click the Define name button, or press Ctrl + F3 and click New.

In the New Name dialog, type any name you want (remember that spaces are not allowed in Excel names), and check if the correct range is displayed in the Refers to field.

For example, this is how we create a name (Jan_sales) for cells B2:B5 in Jan sheet:
Creating an Excel name

Once the name is created, you are free to use it in your external references in Excel. The format of such references is much simpler than the format of an Excel sheet reference and workbook reference discussed earlier, which makes the formulas with name references easier to comprehend.

Note. By default, Excel names are created for the workbook level, please notice the Scope field in the screenshot above. But you can also make a specific worksheet level name by choosing a corresponding sheet from the Scope drop-down list. For Excel references, the scope of a name is very important because it determines the location within which the name is recognized.

It's recommended that you always create workbook-level names (unless you have a specific reason not to), because they significantly simplify creating Excel external references, as illustrated in the following examples.

Referencing a name in another sheet in the same workbook

To reference a global workbook-level name in the same workbook, you simply type that name in a function's argument:

=Function(name)

For example, to find the sum of all the cells within the Jan_sales name that we created a moment ago, use the following formula:

=SUM(Jan_sales)

To reference a local worksheet-level name in another sheet within the same workbook, you need to precede the name with the sheet name followed by an exclamation mark:

=Function(Sheet_name!name)

For example:

=SUM(Jan!Jan_sales)

If the sheet names includes spaces or mon-alphabetic chars, remember to enclose it in single quotes, e.g.:

=SUM('Jan report'!Jan_Sales)

Referencing a name in another workbook

A reference to a workbook-level name in a different workbook consists of the workbook name (including the extension) followed by an exclamation point, and the defined name (named range):

=Function(Workbook_name!name)

For example:

=SUM(Sales.xlsx!Jan_sales)

To reference a worksheet-level name in another workbook, the sheet name followed by the exclamation point should be included as well, and the workbook name should be enclosed in square brackets. For example:

=SUM([Sales.xlsx]Jan!Jan_sales)

When referencing a named range in a closed workbook, remember to include the full path to your Excel file, for example:

=SUM('C:\Documents\Sales.xlsx'!Jan_sales)

How to create an Excel name reference

If you have created a handful of different names in your Excel sheets, you don't need to remember all those names by heart. To insert an Excel name reference in a formula, perform the following steps:

  1. Select the destination cell, enter the equal sign (=) and start typing your formula or calculation.
  2. When it comes to the part where you need to insert an Excel name reference, do one of the following:
    • If you are referring to a workbook-level name from another workbook, switch to that workbook. If the name resides in another sheet within the same workbook, skip this step.
    • If you are making a reference to a worksheet-level name, navigate to that specific sheet either in the current or different workbook.
  3. Press F3 to open the Past Name dialog window, select the name you want to refer to, and click OK.
    Creating a reference to an Excel name in another workbook
  4. Finish typing your formula or calculation and press the Enter key.

Now that you know how to create an external reference in Excel, you can take a benefit from this great ability and use data from other worksheets and workbooks in your calculations. I thank you for reading and look forward to seeing you on our blog next week!

345 comments

  1. Hi
    I want to get the data from another workbook. path is as below, but it doesn't works.

    =('E:\K.E\Actions\All Bills\PM Invoices\Service Bills July 2019 To June 2020\Punjab\[(43-19) Rope Tightness job at NP Plant FFCL.xlsx]Invoice Format-Sales Tax]' !A9)

  2. I’m not very excel savvy so please forgive me. I’ve got 8 tabs with information, not numbers, and I need one master tab (tab #9) to be a running total list of all the other 8 tabs. So when someone inputs information on one of the eight tabs it will automatically be added to the master tab. Is there a way to do that? If so how do I set it up in layman terms?? Excel is not my favorite program to work with and I am not to familiar with coding. So the more simpler you can explain it I would really appreciate it.

  3. Can Anyone Help Me How To Combined 1500 Sale Invoice Sheets Data Into One By Putting Single Formula Just??
    Example Sheet 1, sheet 2 in Last 1500 sheets?
    Date..
    Invoice no..
    RAtes...
    AMount...
    Anyone? I try vlookup but didn't work..

  4. Can anyone help me with Vlookup formula

  5. I have a workbook that must pick up values from another workbook. The source workbook name is not known so I want the user to enter its name on the output sheet once then all the formulas should pick up that name as part of its formula.
    So instead of =SUM([Sales.xlsx]Jan!B2:B5) I want the formula to pick up a value from a cell:
    Cell A1 = "Source.xlsx" Answer cell is SUM(["value of A1"]Jan!B2:B5).
    How do I write this answer cell please?

  6. Does someone know what I'm doing wrong?

    Private Sub CommandButton1_Click()

    Application.ScreenUpdating = False
    Dim printDate As Date
    Dim startDate As Date
    Dim endDate As Date
    startDate = H5 //cell on the same sheet as the button
    endDate = H6 //cell on the same sheet as the button
    For printDate = startDate To endDate
    ActiveSheet.Range("Sheet2!J4") = printDate
    ActiveSheet.PrintOut , Copies:=2
    Next
    Application.ScreenUpdating = True
    End Sub

  7. I have a master sheet with all data and i want to have separate sheets which only pulls certain data from the master sheet. How can i go about doing that?

  8. Hi

    Thanks for an informative article.
    Can you please tell me if it is possible to link to an external workbook that has a name change each day. I want to draw information from multiple cells without having to rewrite the whole spreadsheet each day.

  9. In Worksheet B I want to reference a cell in Worksheet A that is a sum of a list - let's call is cell B12. Can I add to that list in Worksheet A over time and have the reference work? When I do it now, Worksheet B picks up whatever is in B12, it doesn't adjust to know that the new sum is now in B14 because I added to lines to the list that is being summed up. Thanks!

  10. Good Afternoon,

    I have a bit of a complicated question. Im doing a run-down of clients and basically need Sheet 1 A1-A10 (Clients names) to transfer to Sheet 2 A1-A10. But the catch is, I do not want the clients to erase from Sheet 2 when I delete them on Sheet 1. I need them to just pile down on Sheet 2 from A1- A90. Not sure how to though. Any help would be greatly appreciated.

    Thank you

  11. i want transfer all exceldata to another excel sheet but without formula. give me quick reply

    • dhaval:
      The quickest way to copy data only from one sheet to another is to first copy the original data then in the new sheet right click where you want the data and select paste special values.

  12. Good morning,
    I have created a "Database" workbook to use as my source workbook and linked it to other workbooks as reference, in the hopes that when I update the database, the information will be pulled to other workbooks. I understand that the "database" workbook has to be opened at the same time as the workbook that i am working with, but do both workbooks have to be in the same folder?

  13. Hello

    I have one problem

    we have many answers in row like

    This eq I would like to take only one answer to show in final

    this rows around 800 so each like checking is difficult, IF any answer removed, the final cell it has to show removed.

    Eg.

    R1 R2 R3 r4
    Removed Not Removed not removed not removed

    In final R5 I would like to get one answer either removed/ not removed

  14. Hello
    I have to folder one folder name is january and secound folder name is February in my january folder i have one excel file in this file i have 4 column in first column i have opening balance, secound column i have institution, third column i have disposal or forth column closing balance. in my second folder all column or row are same opening balance, institution, disposal or closing balance but in this folder i want to link my opening balance with another folder january closing balance when i change figure in my january folder than automatically change my secound folder opening balance. i want to link my january folder excel file closing balance with my second folder February excel file opening balance. Is it possible

  15. How to reference external several files?

    There are 10 files named A001, A002, ...., A010.

    Can I make the file names in general instead of typing each name on an another excel file?
    For example,

    ='D:\Reports\[A001.xlsx]A001'!B1 (file name and sheet name are same)
    --->
    ='D:\Reports\[search(....).xlsx]search(....)'!B1

    My idea is that to have excel search the correct file and reference the cell value.
    Can it be possible?

  16. Hello mam, i really need your kind support..

    What if i wrote date January 23, 2018 for example and i want automatically on the other sheet, the column for january in the other sheet will have color depend on what i desire. please..
    for February same above will happen.

  17. I need to know one sheet data details to get other sheet as a sammery list
    ex:
    A company - How many delays are there / how many case open are there/ how cases finished on time

  18. Hi,

    i have two sheets in a work book i.e Sheet1 and sheet2. in sheet1 i have the data and in sheet2 i have put "sumifs "formula and it works.now i have to delete the data in sheet1 and update new data of the same type.

    but when i do this the formula doesn't work in sheet2.

    Please tell me the solution.
    Thanks

  19. I am trying to reference a sheet within the same workbook by entering the following formula : =Sum('Monthly Bill (OCT)'!C2:D2) I receive a #REF response. Can you help me figure out whats wrong with my formula.

  20. i want to make register like issue for proccess in excel with that i also want to make same register of party that i have given material to that party for example

    workgroup

    issue to process (sheet name)
    date
    issue no
    party
    quantity
    rate
    amount

    party register (sheet name)
    date
    qty
    rate
    amount

    at one time i want to add record in party register when i issue to process
    data....

    waiting for reply.............

    alpesh

  21. Hello, I wanna know if we can make a relative folder referencing?
    Like, I want to sum the cells from the parental folders?
    Thank you!

  22. I am trying to sum values from one worksheet to another and its giving me 0 which is wrong.It copies the cell values and sheet name correctly in sum but as soon as i press enter,it turns to 0.

    • Hello,
      For me to understand the problem better, please send me a small sample workbook with your source data and the result you expect to get to support@ablebits.com. Please don't worry if you have confidential information there, we never disclose the data we get from our customers and delete it as soon as the problem is resolved.
      Please also don't forget to include the link to this comment into your email.
      I'll look into your task and try to help.

  23. I want to use Sheet 1 to enter data, Sheet 2 to store formulas, and Sheet 3 to store the calculated output from Sheet 1 data modified by the formulas in Sheet 2.
    How to do this?
    Thanks

    • Hello,

      If I understand your task correctly, please try to do the following:

      1. Enter number 1 in cell A1 on Sheet1;
      2. Enter the following formula in cell A1 on Sheet2:
      =Sheet1!A1+Sheet1!A1
      3. Then enter the formula below in cell A1 on Sheet3:
      =Sheet2!A1

      Hope this will help.

  24. hello. i am confused. what i am doing is exactly what is stated in the above examples. however, instead of the actual value, the formula text is the one displayed.

    ex. =sheet1!h10 displays sheet1!h10 instead of the value of the cell. is there a workaround on this?

    thanks!!!

  25. HELLO,

    I don't want to add the values using the SUM formula, I just want to copy the cell values from another workbook. how do i do this.

    • Hello,

      You can add references to values from another workbook by copying the cell values from this workbook and pasting them into the workbook you need via Paste Special –> Paste Link.

      Hope it will help you.

  26. i need help, is it possible to link a cell from sheet1 to the values on sheet2??for example if i input a name on sheet1 cell A1 and matches a name on a list on sheet2 then the name will turn to " color red" or "error" if matches??thanks in advance..

  27. Thank you!! you've helped me

  28. could anyone help to find out the path of reference cell of different sheets? is there any way to reach the reference sheet quickly

  29. Hi! Just have a further query: I'm required to fill out two timesheets for work with the same times, and have successfully used your 'External reference to a closed workbook' guide above to fill out the second timesheet with the times automatically pulled from the first timesheet.

    However, the 'first timesheet'/reference workbook has each weekly entry made as a new tab/worksheet (i.e. each worksheet in the source workbook covers a week and is named with a date range), so in my second timesheet, I have to update the workbook name in every since relevant cell each week to get it to fill out automatically.

    So I suppose my question is: in the formula

    [Workbook_name]Sheet_name!Cell_address

    is there a way to reference merely the top-level/latest worksheet rather than the specific sheet name, so I don't have to change it manually?

    Thanks!

  30. Hello I receive an excel file but when I open the file , it says, This workbook contains links to one or more external sources that could be unsafe.
    If you trust the links, update or dont update. There is an error: source not found . There is a file from the link that i couldnt find, i have only receive one file for example file1.xlsm and the on the edit link it is looking for example file2.xlsm. Does this mean i need to create a new file formula ? Thank you very much i new to this thing.

  31. How do I do a comparison?
    For example, I have 'sheetA' that has a unique value in cell D1.
    I then have sheetB that has a list of values in column D.
    I want to set something that will flag cell D1 in sheetA green if it shown in column D of sheetB, or red if that value is not shown in that column.
    Can this be done?
    Thanks, M

  32. I have 2 Sheets, Sheet1 is for record entry with SAVE RECORD button and once button is clicked it updates record in Sheet2 which works well, but the problem is that after SAVE RECORD button click it display sheet2 where the data is saved which i do not want. I need Record to be saved without displaying sheet2. please help me.

  33. Hi,
    The Problem faced by me in excel that I have a sheet in which some things typed i want that on another sheet i type first name one a time and complete things automatic come. and next time when that name enter on first sheet other sheet automatic update without putting name.
    Can you help.
    Waiting your kind response.

    BR

  34. The problem faced by me in excel is regarding linking of cells.actually what happens is after linking a cell in excel from same workbook but from other sheet,and clicking on the linked cell just shows the path and does not open the linked path.
    thanks in advance.

  35. Hi guys
    Can't find info regarding the action of excel reference to another ONLINE workbook.
    I am having two different workbooks non related and trying to gather results from workbook one to be displayed in the workbook two.

    Please help
    Cheers,
    Claudia

  36. Hello,

    My question is: I have a spreadsheet that has two tabs. I want the first tab to pull appointment dates from the second tab if the patient names on both tabs match up. How do I do this to save myself countless hours? Thank you in advance for your assistance.

    • Rajesh Kumar was able to figure out how to do the formula that I need to save me countless hours! Thank you so much.

  37. helloo,
    i have a problem below;

    sheet 1 (all the data present with merge cell)
    ---------------------------------------------------
    XTP0101 922367******9111 1,000

    sheet 2
    ---------------------------------------------------
    ='sheet1'!C13:D13

    Result:
    ---------------------------------------------------
    #VALUE!

    Which formulae to use?????

  38. Hi everybody,

    Im an intern at an engineering company in the Netherlands and working on my 'personal investigetion'. I'd like to apolagize in advace for any mistakes regarding my English.

    At the moment I've exported a shedule from Revit2016 to Excel2016. It has 8 rows of information (headings excluded) and 62 columns. It's my intention to make a seperate Format in Excel which is able to extract data from these 496 cells and convert it into grouped Metadata.

    The problem is that a Format has to be able to be apliccable to every project, each of them with their own specific number of rows (column headings are identical). Besides, the workbook_names from which the data is extracted differ every time.

    I had the intention to create a worksheet with formula linking cells to the extract file, but to write the formula in such a way that it is easy to manipulate.

    For example: =('[Workbook_name]Worksheet_name!Cell_name') becomes =('[Cell_name]Cell_name!Cell_name) with the first two Cell_name referring to Cells within the current Worksheet in which the Workbook_name and Worksheet_name can be edited.

    Unfortunately I hit a brick wall, it doesn't work. Perhaps I'm not doing it right or it just isn't possible.

    If someone is able to help, please do! I've got to have the Format ready a week from now (with 01-06-2016 being today).

    With Kind regards,

    Roy W.

  39. I have 2 different workbooks that I am trying to link that have different file paths. I have a "Log" and a "Tracking" workbook. In the "log" there are hyperlinks only in column B that show as numbers because they reference what the next document # should be (0001-5000). When you click on the hyperlink to open up the excel file (tracking document), I need it to always have that reference #. Example- If I click 0005 and the hyperlink opens the tracking workbook, then I need it to have 0005 in a certain cell. This goes for the same way for every number that you can click. How do I link these workbooks together so that the tracking document always has the number that you click on?

  40. Hi!

    I have 2 workbooks.. one I input data into, and the other logs who made the error.. is there a way I can make it so whenever I put someone's name into it, it will automatically update the second workbook with the date it happened and how many?

  41. Can u help me with this.
    =if(B2="","",vlookup(B2,'iw39',A:B,2,)),If(C2="","",vlookup(C2,'iw29',A:H,5,0))
    if B2 is not available, i want to use the c2 to display the content coming from the sheet name IW39.
    if the c2 is not available, i want to use the B2 to display the content coming from the sheet name IW29.

    I will have 3 sheet. Namely "Data info", "IW39" AND "IW29"

  42. Hi thanks for the tutorial. is there a way for you name the sheet that a formula is getting its information from.
    for example im trying to find the cheapest vendor for a service i offer, their rates are on different work sheets, then i have a master sheet that displays the cheapest rates for each product using vlookup. is there a way of naming the sheet that vlookup has found the data in?
    this would help me very much thank you.

  43. how to auto calculate frieght total at end of the month by making daily transaction sheet to ledger sheet auto

  44. I have a spreadsheet that pulls information from one tab to another based on an if then formula. Is there a way to lock the information on the third page once it has been recorded even if it is deleted from the original tab?

    THanks!

  45. Hi,

    I have a sum that is derived using data from another workbook. However, when the other work book is closed. The formular reports an error.

    Both files are in the same folder on my desktop. Kindly assist.

  46. I need sheet 1 entire values in sheet 2.
    Sheet 1 having datas but sheet 2 is empty in initial stage.
    While we giving conditions in sheet 2, fetching datas in sheet 1 has to come automatically in sheet 2.
    for example,
    Sheet 1
    Name Age Country
    A 10 India
    B 10 USA
    C 10 India

    I need in Sheet 2
    Country = India datas
    Name Age Country

    Please do the needful for this

  47. Hi,

    Currently i am preparing a job sheet in which i required help.
    As currently i have prepared 5 sheets in those sheets there are some different values or some similar values. Now i wanted to create one new sheet with such formula that if i will search any value then on that new sheet it will shows me the value location of all the 5 sheets that where it is placed. I wanted to do to save the time because for searching the values on whole workbook it consume time.

    For ex: I have value of OD56782 on 3 sheets out of 5. Now whenever i entered OD56782 on the new sheet it will display the locations of this particular value.

  48. I am linking a cell between worksheets in the same file. When I type the formula in the cell 'Sheet 1'!H11 the cell is populated with a 0 since the cell I am linking too is blank. How do I remove this 0 from the cell with the formula? The linked cell is blank until populated which will then be carried over to the other sheet.

    Thanks

  49. Dear
    Sir, kindly make for me one formulla based sheet ( opening+receving-damage-consuption= 'closing) sheet plz let me how to make

  50. Hi Svetlana,

    I have a query that has me stumped. I am a bit of an excel novice so it may be nothing. I am currently trying to create a comprehensive meal planner/macronutrient calculator for my fitness training. What I want to do is have two separate sheets:
    The first I want to be a table that has all the ingredients i use in the first column, and then the Fat/Carb/Cal/Protein contents (1% of) in the subsequent columns directly relating to the quantity column at the end so I can change this value and all the macros will change accordingly. This I have managed to do.
    The second page, I want to have 6 individual tables laid out: INGREDIENT/CALORIES/CARBS/FAT/PROTEIN/QUANTITY. I would then like the ingredient column to be a drop down list that would include all the ingredients from the other sheet, and once selected, would autofill the remaining columns - this way I could easily add ingredients in the morning when I make up my meals for the day without having to individually input the stats. Any advice would be appreciated.

    Thanks,

    Dorian

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)