Search code examples
google-sheetscelladdition

Google sheet: how to add the cell's value to another cell


I want to create a function that could add the value of the current cell to another cell if a condition is met.

From this Help Me

to this Please

I intend to keep on adding data and thought it would be better to assign the right function for each cell in the 'total' column. I think I can use IF() to select cells per A, B, and C, but not sure what to do with adding each 'total' value from 'TRACKER' to the corresponding cell in 'WALLET' And still couldn't find the right function after three days of search, and I decided to finally join and ask for your help.

Please save me


Solution

  • You need SUMIFS() function like-

    =SUMIFS($F$14:$F$23,$C$14:$C$23,$B$6,$B$14:$B$23,C6)
    

    See your sheet.

    enter image description here