Forum Discussion

Cbuddy's avatar
Cbuddy
Copper Contributor
Jul 15, 2022
Solved

Excel Spreadsheet help - between 2 worksheets

hello,  I am trying to add values from 2nd Worksheet to master worksheet called "Budget" from the same Date ( 3/22 ) as sample. 

 

What kind of formula can I use to input a total valve for the same date on the Master Spread sheet cell ? 

 

If tried =ifna(vlookup) but only works for one cell and trying to help make process autocalculate on Budget Tab from "Baldor" tab 

  • Cbuddy That could be something like (in B22 on the Budget sheet):

     

    =SUMIF(Baldor!$B$2:$B$2000,A22,Baldor!$F$2:$F$2000)

     

    which means as much as, look in column B for same value as in A22 and then sum the amounts from column F on matching rows.

     

    You then need to copy this formula up and down as you want to use it on every row.

     

     

4 Replies

    • Cbuddy's avatar
      Cbuddy
      Copper Contributor
      Thank you very much for the Formula help. I have also tried =Sumif(Baldor!$F:F2000) but the F column specification did not help complete the process. I may be missing something or closed parenthesis that help calculate my totals from same Dates
      • Riny_van_Eekelen's avatar
        Riny_van_Eekelen
        Platinum Contributor

        Cbuddy That could be something like (in B22 on the Budget sheet):

         

        =SUMIF(Baldor!$B$2:$B$2000,A22,Baldor!$F$2:$F$2000)

         

        which means as much as, look in column B for same value as in A22 and then sum the amounts from column F on matching rows.

         

        You then need to copy this formula up and down as you want to use it on every row.