Forum Discussion

Montreal_Mike's avatar
Montreal_Mike
Copper Contributor
Apr 06, 2021
Solved

Linking a calculation in one worksheet to another

Hi, I am using Excel for windows (office 365 edition), and am trying to link the results of a formula calculated on one worksheet to a cell in another worksheet. Specifically, I am calculating the ex...
  • SergeiBaklan's avatar
    SergeiBaklan
    Apr 07, 2021

    Montreal_Mike 

    As a comment, it's necessary to type such formula. Start typing  = into the cell, after that click on L3 in sheet March, Enter.

     

    However, much more reliable will be to use formulas to return data into the summary sheet. Initial variant could be

    with that to keep exactly the same Expense list for each month. You may add only actual expenses in the month, order is also not important. Formula is

    =IFNA(INDEX(March!$L:$L,MATCH($B3,March!$B:$B,0)),"")

    That could be other improvements, but at least this one.