sum all of previous value with one row formula - google-sheets

I want to sum-up all of previous value.
for example like image.
If current cell is C2, then show A2.
If current cell is C3, then show SUM(A2:A3).
If current cell is C4, then show SUM(A2:A4)

So in cell C2 , your start cell, put:
=Sum(A$2:A2)
Now copy paste it to all the cells in the column you want - C, or simply Drag Down the formula.

Probably more alternatives, but try:
Formula in B2:
=ArrayFormula(IF(LEN(A2:A),(SUMIF(ROW(A2:A),"<="&ROW(A2:A),A2:A)),))

try in C2:
=ARRAYFORMULA(IF(A2:A="";;MMULT(TRANSPOSE((ROW(A2:A500)<=
TRANSPOSE(ROW(A2:A500)))*A1:A500); SIGN(A2:A500))))

Related

Google Sheets - How to write a formula that minuses the selected cells from the top cell

How would I do it so if I had a list of numbers, how could I get every number below A1 to be minuses from A1 and put next to that cell?
Paste this in B2 or see the Example Sheet
=ArrayFormula(IF(A2:A="",,A2:A-$A$1))
What about this simple formula in A2 cell?
=INDEX(A1+B2:B6)

How to use autofill in Google Sheet formula?

I have formula to auto fill data like column A. It is no need to hand dragging or auto filling by suggestion.
Here column A is perfectly done. Cell A1 formula as below:
={ "VendorNo"; unique(General!A2:A) }
Cell B1 formula is correct as below:
LOOKUP(VendorStatus!A2,sort(General!A2:A),sort(General!C2:C,General!A2:A,TRUE))
Once cell A1 is done, all A column is real auto filled. All I want is to do is the same effect like cell A1. How can I rewrite B1 formula to auto filled the rest B column value?
P.S.: I am sorry I couldn't post image above directly because I don't have enough reputation.
Try in B1 (assuming your formula gives you the right answer)
={"EventStartDate";arrayformula(if(A2:A="",,LOOKUP(A2:A,sort(General!A:A),sort(General!C:C,General!A:A,TRUE))))}
try in row 1:
={"event start date"; INDEX(IFNA(VLOOKUP(A2:A, General!A2:C, 3, 0)))}
or:
={"event start date"; INDEX(IFNA(VLOOKUP(A2:A,
SORT(General!A2:C, ROW(General!A2:C), 0), 3, 0)))}

Add the value of another cell in a complex formula

I found a complex formula that I am using but I want to edit it so it adds the value from another cell to the output.
See Sheet1 here:
https://docs.google.com/spreadsheets/d/1VrJEEVtYt1r4jPABpazQ31JVmotYF0LV3aroTHAcuq0/edit?usp=sharing
I need to edit the formula in cell D4 so it appends the result with the corresponding value from column B.
maybe:
=ARRAYFORMULA(IF(C4:C="",,TRIM(TRANSPOSE(SPLIT(QUERY(
REPT(Data!B5:B&"♠", Data!A2), ,999^99), "♠")))&"-"&B4:B))

Increment ROW, not COLUMN when dragging formula horizontally

I'd like to drag the formula
=if(and(AHTpivot!$A1=statusSheet!$A1, AHTpivot!$B1="wrap-up"),AHTpivot!$C1, "")
right to adjacent columns about 1,000 times. I only want statusSheet!$A1 to increase, and it needs to increase in rows instead of columns.
For instance, if the formula is in A1, and I drag it to B1, it should be in cell B2. [?]
=if(and(AHTpivot!$A1=statusSheet!$A2, AHTpivot!$B1="wrap-up"),AHTpivot!$C1, "")
Maybe:
=if(and(AHTPivot!$A1=indirect("StatusSheet!$A"&Column()),AHTPivot!$B1="wrap-up"),AHTPivot!$C1, "")
You could also use an array formula if you don't want to drag the formula.
=ARRAYFORMULA(IF(
(AHTpivot!$A1=INDIRECT("statusSheet!$A"&COLUMN(A1:AAA1))
* (AHTpivot!$B1="wrap-up")
,AHTpivot!$C1, "")
The * acts as an and.
Change AAA1 to the column reference you desire. Or, change to COLUMN(A1:1) if you want to go to the end of the sheet.
Credit to pnuts for the INDIRECT idea. :)

Fill column with maximum/last value from another column

How can I get the result as in example with ARRAYFORMULA up to last filled cell A?
I can do it with formula in cell C1 =MAX(B$1:B1) but in that case have to copy the formula in each cell in turn.
In C2 try:
=ArrayFormula(if(row(A2:A) <= max(if(not(isblank(A2:A)), row(A2:A))),vlookup(row(A2:A),filter({row(A2:A),B2:B},len(B2:B)),2),))
See this spreadsheet for an example.

Resources