How can i make the following calculation? See screenshot column "C".
And the answer is you can achieve the functionality by using SUM() function - place the =SUM($B$1:B1) to cell C1, then copy down.
The following picture shows the answer:
Related
Is there a formula where if I have a list, for example, "Ready For Work" it will write down the cell location into 1 cell, but only if there is no one working on it (blank name) so that I can find the work easily?
My Formula I have so far is "=TEXTJOIN(", ",TRUE,FILTER(ADDRESS(ROW(D:D),4,4),F:F=D1),)"
All I'm missing is the IFBLANK formula, but don't know how to implement it.
What I have so far: https://i.stack.imgur.com/jEIkV.png
Use below formula-
=TEXTJOIN(", ",TRUE,FILTER(ADDRESS(ROW(A4:A8),1,4),B4:B8=A1))
What about this approach:
Screenshot:
Used formulae:
=IF(B2="a b c",ROW(),"")
=IF(NOT(C2=""),"B","")
=D2&C2
=TEXTJOIN(",",TRUE,E2:E7)
(I would give some explanation, but it's self-explaining, I guess) :-)
I need a Formula to use in my table, that will get me the following result
Please check this image
In B2 for example it is 1+2+3+4+5
In B3 As Another example it is 1+2+3+4+5+6
etc...
thank you
This is simple math:
=A2*(A2+1)/2
Try
Formula used in cell B2
=SUMPRODUCT(ROW(INDIRECT("1:"&$A2)))
How do I move answers from other column to same question under another column, can any one guide the exact formula to achieve this? See example below what needs to be achieved as shown in picture.
With having the data as posted in your example, use the following formula in A10:
=IF(OR(OFFSET($A$1,ROUNDDOWN((ROW()-7)/3,0),,,)=A9,OFFSET($A$1,ROUNDDOWN((ROW()-7)/3,0),1,,)=A9), IF(OFFSET($A$1,ROUNDDOWN((ROW()-7)/3,0),1,,)=A9,"",OFFSET($A$1,ROUNDDOWN((ROW()-7)/3,0),1,,)),OFFSET($A$1,ROUNDDOWN((ROW()-7)/3,0),,,))
But there may be a simpler way..
I have the following
I tried to go with If / Else but the references changed. I'm not figuring out.
Thanks
This is a straightforward case to use VLOOKUP(). In C2, put this and drag down:
=VLOOKUP($A2,$F$2:$G$4,2,FALSE)
I have the following formula set-up: =INDIRECT("'Passed to Salesforce (digital only)'!A46",TRUE)
However I'd like the A46 number to update when I drag the formula down.
I've tried using the &CELL but can't get it to quite work:
=INDIRECT("'Passed to Salesforce (digital only)'!A46""!"&CELL("address",TRUE))
Can anyone help me out?
Thanks,
Sam
I have no idea what you're trying to do in your second formula.
The first one won't change the reference because it is just text not an actual cell reference. If you only want to update the row, not the column you could use ROW() to get the current cell's row add an offset (e.g. if you start with your formula in row 1 and want A46 your offset is 45):
=INDIRECT("'Sheet1'!A"&ROW()+45,TRUE)
I figured this out, I had to remove the first cell reference and duplicate exclamation mark:
=INDIRECT("'Passed to Salesforce (digital only)'!"&CELL("address", A47))