This works the way I want it to but I want to use the ArrayFormula to add the formula to the whole column starting at Cell J2:
=IF(E2:E="Closed","",MINUS(TODAY(),I2))
This doesn't work:
=ARRAYFORMULA(IF(E2:E="Closed","",,J2:J), MINUS(TODAY(),I2))
I have tried multiple ways to add the ArrayFormula into it and reorganized it multiple ways but it failed.
Any ideas where I am going wrong?
Any help appreciated!
Please use the following formula
=ArrayFormula(IF(I2:I<>"", IF(E2:E="Closed","CL",MINUS(TODAY(),I2:I)),""))
(where today is May 20th. Adjust ranges and notifications to your liking)
Related
I am trying to create a simple table that I can just replicate over and over when needed. Although in my sheet, I have the first range, B3:D12 working exactly as I want, I am finding it a challenge to then copy the formatting across to E3:G12 and for it to work subsequently.
Is the formula wrong? Is there an easier way that I can do this to make it simple each time I copy + paste the table across?
Thanks
Google Sheet Conditional Formatting
apply this:
=(B3=D3)*(B3<>"")
to B3:12, C3:12 and D3:12 as green
then as red use:
=(B3<>D3)*(B3<>"")
on B3:12
I have a very simple problem, but unable to find a way to solve it in Quicksight.
I have data in the below form.I just want to compare the different columns(marks of different weeks) and print out the highest in a new column.
I have tried using the "Max" function, but seems like we can use it only for a specific column,
The output should look like:
Any help is appreciated.
I dont think that we can do aggregate functions across columns like in excel we can do max over range e.g. =max(c1:c5)
I have this work-around, given columns are not too many.
ifelse(
marks_week1>marks_week2,
ifelse(marks_week1>marks_week3,
ifelse(marks_week1>marks_week4,
ifelse(marks_week1>marks_week5, marks_week1, marks_week5),
ifelse(marks_week4>marks_week5, marks_week4, marks_week5)),
ifelse(marks_week3>marks_week4,
ifelse(marks_week3>marks_week5, marks_week3, marks_week5), marks_week4))
, ifelse(marks_week2>marks_week3,
ifelse(marks_week2>marks_week4,
ifelse(marks_week2>marks_week5, marks_week2, marks_week5),
ifelse(marks_week4>marks_week5,marks_week4, marks_week5)),
ifelse(marks_week3>marks_week4,
ifelse(marks_week3>marks_week5,marks_week3, marks_week5),
ifelse(marks_week4>marks_week5,marks_week4,marks_week5)))
)
Also posted on quicksight community as feature request or provide insight in case this exists already.
How can I get the search function to look through multiple columns?
=(FILTER(P1:Y500,search(F5(T1:T500)+(U1:U500))))
=(FILTER(P1:Y500,search(F5(T1:T500+U1:U500))))
=(FILTER(P1:Y500,search(F5(T1:U,U1:U))))
=(FILTER(P1:Y500,search(F5,T1:U+U1:U)))
These obviously don't work, but I can't figure it out. Any help would be much appreciated.
try:
=FILTER(P1:Y500; REGEXMATCH(T1:T500&U1:U500; F5&""))
I have a profit sheet I use, and in my profits column I would like to create a SUM of the whole column whilst excluding the numbers which are negative. Anyone have any ideas of how to do this? It's a long column and manually excluding the numbers one by one would take time. The negative numbers are marked by - if that helps.
I'd imagine it needs an IF statement but i'm not too sure.
Any help would be appreciated, thanks!
I think there may several way to do that. One simplest way is to use SUMIF() function. Try-
=SUMIF(A:A,">0",A:A)
I am trying to add all the number of times a name appears in multiple spreadsheets. I seem to be having issues using the formulas I am using. =COUNTIF ('Sheet 6':'Sheet 8'!G1:G124, "Name") is one of the formulas I've tried that does not work. =COUNTIF (Sheet6:Sheet8!G1:G124, "Name") This formula is also giving me problems. I'm not sure what I am doing wrong or how to fix it. I am not sure if this is a google sheets problem or what.
try:
=COUNTIF({Sheet6!G1:G124; Sheet8!G1:G124}; "Name")