I'm having trouble getting google sheets to do what I want it to do.
I have a form that adds new rows into a google sheets spreadsheet
The entries are then further manipulated in new columns that don't correlate to the google form.
I wanted 3 columns of deductions to be subtracted from 1 column being a daily intake a. example: [] gForm:Daily bank(A) | gForm:Credit Cards(B) | gForm:Tip outs(C) | gForm:Total Cash(D) | Column E 1 30 30 40 200 100 2 3
I want each line in Column E to automatically populate the code in each new row, that takes column D and subtracts A:C and spits out the difference in Column E. code example idea: =sum(D:D-sum(A:C))
I made this an Array formula: Below =ARRAYFORMULA(IF(ROW(G:G)=1, "Total Taxable Cash", IF(ISBLANK(F:F), "", ArrayFormula(F:F-(sum(C2:E2))))))
PROBLEM is that it takes every cell in colums A:C and then subtracts each row in Column D to spit out incorrect answers in Column E.
Does anyone know how to code this so that it adds the code automatically to each new row but also calculate each row individually and not as columns.
Please help me, thank you all.