I need some help with my Google Sheets guys. I want to know if there's a fast way to set conditional formatting on a whole column, like when I drag it down or copy and paste my rule "=AND(A1=B1)" to the line under to automatically turn in into "=AND(A2=B2)"?
Hope you guys can help me.
Thank you.
Just found the solution, it's just by adding a $ like this : "=AND($A1=$B1)"
Related
So, I'm looking for a way to make the cell(s) highlight themselves based on todays date, nothing too fancy just so it's simpler to see the day. Pictured below is the graph I currently have.
What I've got
I know it'd be easier for the formula if I were to just format the date as mm/dd/yy or some form of that, but it works better visually for the purpose of the form if it is done this way. So is there a way I could make it work how it is now? If not then what would be best with the formatting done in a mm/dd/yy format? Thank you in advance :)
Use this custom CF formula rule-
=AND(A1=DAY(TODAY()),A$2=TEXT(TODAY(),"MMMM"))
try on range A2:Z:
=A$2&A3=TEXT(TODAY(); "mmmmd")
Fomula that works:
Fomula that doesn't work:
Hi guys, I encounter a problem.
I use the Inventory template from sheetgo.
I copy the fomula that works and paste it on another sheet.
Unfortunately, it got an error with the arrayfomula.
I have spent a long time investigating all possibilities but still can't solve them.
Is any expert able to help in this matter?
error says it all... in order to expand the results of arrayformula you need to clear range C2:C so that arrayformula could roll out. also, it looks like your formula is wrong but hard to tell for certain because you did not include a copy of your sheet nor formula
I'm trying to use the filter function with a reference to a cell in another sheet as i have to copy the entire spreadsheet and be able to change the range of the filter.
I'm using cell and address together and hope it will return the text for use in the the formula. So far it look like this:
=filter(Master!A2:E;CELLE(ADRESSE(Settings!B1))=Settings!B2)
I keep getting an error displaying “FILTER has mismatched range sizes"
When I'm not using Celle function but writing Master!D2:D instead there is no error.
I have made a dummy spreadsheet so you can see what I mean.
https://docs.google.com/spreadsheets/d/1KZhB1m0WzPlnGdzjJYZqQpsMsjoOpqQhlATmHs5dUm4/edit?usp=sharing
Any help is much appreciated. Thanks.
Remove the space in Settings B1 and then try
=filter(Master!A2:E; indirect(Settings!B1)=Settings!B2)
Thank you so much.
Indirect was what I was looking for.
It seems to work like a charm!!
/ Jesper
I am trying to apply the formula below (which is correct as far as I know) to conditional formatting, but it doesn't seem to be work properly. Any suggestions on how to fix this formula so that it works for conditional formatting would be greatly appreciated.
OR(AND(NAs!$A2="x",NAs!$AD2<TODAY()),AND(NAs!$A2="x",NAs!$AD2=""))
=AND(NAs!$A2="x",NAs!$AD2<TODAY())
will work as a CF formula rule for at least a single cell. More than that and you need to disclose what it is you want.
I was Hoping to be fever along before i had to ask for help but.
using Google sheets i am trying to have a range of cells(a row specificity) change there background colour based on the Sum of the 6 cells directly below it in the
I know I am happy using the basic conditional forming and i have a formula witch will return true if the Sum = what i am looking for
=IF(SUM(D6:D11)=6,true,FALSE())
and this works if i copy and past it along but if i try to put it in the Custom formula is box i get told
There was a problem while
Cannot save the rule with invalid formula.
so i take it that i am not using the box right
any help would be greatly appreciated
Conditional formatting is ... conditional. There is not normally any need for IF(). Your formula should work as:
=Sum(D6:D11)=6
but over what range and what cells to format (other then D5) I can't help you, if required, without further details.
Please though do read the [google-spreadsheet] tag wiki.