Conditional Formatting in Google Sheets (Complete Guide)

  Рет қаралды 54,542

Simpletivity

Simpletivity

Күн бұрын

Пікірлер: 36
@BillRocklin
@BillRocklin 11 ай бұрын
Good one Scott ... I use conditional formatting a lot but didn't know about the option to select the entire spreadsheet ... Nice ... Thanks again!
@Simpletivity
@Simpletivity 11 ай бұрын
You're very welcome, Bill. Yes, I like having this option available depending on what I'm trying to zero in on.
@chloerains9203
@chloerains9203 7 ай бұрын
Very amazing thank you :) Trying to make sense of spreadsheets when looking for your first apartment is a real pain but this helps a lot! Keep up the good work :)
@Simpletivity
@Simpletivity 7 ай бұрын
You're so welcome! Wishing you all the best as you find that first apartment!
@DPToolsandSkills
@DPToolsandSkills 6 ай бұрын
I like the way you explain with simplicity
@Simpletivity
@Simpletivity 6 ай бұрын
I'm so glad that you found this helpful and enjoy my way of teaching. Thanks for sharing!
@ramnoham593
@ramnoham593 7 ай бұрын
Very clear and simply explained, thanks
@Simpletivity
@Simpletivity 7 ай бұрын
You are welcome!
@SpoorthiSatish
@SpoorthiSatish 4 ай бұрын
Thank you! Helped a lot which a sheet I made tracking the progress of my studies!
@Simpletivity
@Simpletivity 4 ай бұрын
You're very welcome!
@MJ-ix2lf
@MJ-ix2lf 6 ай бұрын
Thank you! This was very helpful.
@Simpletivity
@Simpletivity 6 ай бұрын
You're welcome!
@roughout
@roughout 11 ай бұрын
Very enlightening and informative.
@Simpletivity
@Simpletivity 11 ай бұрын
Glad you found it helpful!
@aryaagnivesh29
@aryaagnivesh29 5 ай бұрын
really helpful. Simple to follow 🙏
@Simpletivity
@Simpletivity 5 ай бұрын
So glad you enjoyed this one!
@therapy4everybody
@therapy4everybody 6 ай бұрын
Very helpful. Thank you! I'm wondering about more complex combinations of conditions, like if the value in B3 is true AND the the value in B2 is "PT" then color the row green.
@Simpletivity
@Simpletivity 6 ай бұрын
Sure thing. To do this, use the following custom formula: =AND(B3=TRUE, B2="PT") Explanation: AND() checks if multiple conditions are true simultaneously. B3=TRUE checks if the value in cell B3 is the boolean value TRUE. B2="PT" checks if the value in cell B2 is the text "PT".
@therapy4everybody
@therapy4everybody 6 ай бұрын
Thank you so much!!!
@josena7517
@josena7517 8 ай бұрын
This is very cool, thank you so much.
@Simpletivity
@Simpletivity 8 ай бұрын
You're very welcome!
@bdriscoll-woo9371
@bdriscoll-woo9371 9 ай бұрын
Thank you- easy to follow you. What formula can I use when I want only empty cells in a column of the whole sheet highlighted?
@ChaseGilesRealtor
@ChaseGilesRealtor 9 ай бұрын
What if I want to have the entire row be colored, but only based on one columns Color Scale? Im looking to have a scale from 1-10 and the rows then also be highlighted according to that one column.
@BayRockHomeImprovements
@BayRockHomeImprovements 9 ай бұрын
great information. Well done
@mallikakavali1612
@mallikakavali1612 3 ай бұрын
Tq for sharing this video
@Simpletivity
@Simpletivity 3 ай бұрын
You're welcome!
@marksibert305
@marksibert305 4 ай бұрын
Hi. I wonder how you can have an open set of fields that you want to be flexible with, and change the individual cell's format, but a group of fields that will individually change to those formats when you put in just the word? To explain my self. I have a list that could say and formatted -- unassigned - white field, regular black text start - white field, bold black text in progress - blue field, bold yellow text 80% complete - green field, bold yellow text etc... and the list grid will have the single fields change to those when I just enter the word. but I also want to add a differenct word and format whenever I want, that will change in the grid's individual field too.
@KennethBoehm-z2h
@KennethBoehm-z2h 9 ай бұрын
Well done -- but -- it doesn't tell me how a condition in say column B can set its resulting color in the same Row, but one row up . . .
@PereTufet
@PereTufet 6 ай бұрын
The same is happening to me and I found the solution. In the range, don't start in the 1 row but the 2. Don'ti use A1:x1000 and use A2:x1000 It worked for me ;-)
@manikandanpalanisamy8815
@manikandanpalanisamy8815 Ай бұрын
Thanks for How to product the same sheet but multiple user control in same sheet exm, A column only edit Mr. A B column only edit Mr. B how to do this
@krukarlukasz3834
@krukarlukasz3834 Ай бұрын
How can I have multiple conditiong formating based on values of another cells? let me explain by example I have few tables each with 3 headers with 3 drop down options: Empty, Control, Detail Now, I want the content of the table rows below remain blank as defoult. As soon as I start typying in ithat cells I want it to turn yellow. That part I can do by using siple conditioning formating on that cells. However I want to add one more extra factor - if the header is "Detail" (or any othe cell without drop down) I want cell colour change to green. So, in a nuthell want to be able to write custo conditioning formula which goes something like that C1=if empty = blank/white, if not empty = yellow, If not empty and B1="Detail" = green Anybody know how to tackle this?
@ZhaoYun-te4xb
@ZhaoYun-te4xb 8 ай бұрын
10:12 This is exactly what ive been trying to do. The problem is, the cell that Im trying to base it on says "Sunday", but it's not actually a text that says "Sunday". It's a date that I format to display days. So I want every row that says Sunday to be red. I tried putting like =B2="Sunday", but it didn't work Can you help me out?
@Simpletivity
@Simpletivity 8 ай бұрын
Would the following work? Select the range of cells you want to format based on the day. Go to the Home tab and click Conditional Formatting. Choose New Rule. Select Use a formula to determine which cells to format. In the formula box, enter: =WEEKDAY(B2)=1 (replace B2 with your actual cell reference). Click Format.... Choose the desired formatting (e.g., red fill). Click OK twice. This formula checks if the weekday number returned by WEEKDAY(B2) is 1, which corresponds to Sunday. If true, the formatting will be applied.
@ZhaoYun-te4xb
@ZhaoYun-te4xb 8 ай бұрын
yooo that's smart. thank you my good sir. this actually works exatcly the way i want it to@@Simpletivity
@Simpletivity
@Simpletivity 8 ай бұрын
I'm so glad to hear that. You're very welcome!
@hassanriaz2841
@hassanriaz2841 7 ай бұрын
google sheet me ham kisi word ko colour den to automatically apne jese colour ke sath mil jae esa hoskta he
Basic Conditional Formatting in Google Sheets
16:24
Ben Collins
Рет қаралды 2,5 М.
7 Google Sheets Tips that will Save You So Much Time!
11:49
Simpletivity
Рет қаралды 25 М.
Fake watermelon by Secret Vlog
00:16
Secret Vlog
Рет қаралды 31 МЛН
UFC 308 : Уиттакер VS Чимаев
01:54
Setanta Sports UFC
Рет қаралды 679 М.
Ultimate Shopping List in Google Keep (so easy to use!)
12:58
Simpletivity
Рет қаралды 10 М.
7 Google Keep Tips Every User Needs to Know
10:58
Simpletivity
Рет қаралды 50 М.
How to use Appointment Schedule in Google Calendar (Tutorial)
18:57
Simpletivity
Рет қаралды 154 М.
7 Google Sheets Tips Every User Should Know!
11:41
Simpletivity
Рет қаралды 37 М.
5 Google Sheets Tips Every User Should Know!
12:02
Simpletivity
Рет қаралды 673 М.
Advanced Conditional Formatting in Google Sheets
38:51
Ben Collins
Рет қаралды 25 М.
This is how I ACTUALLY analyze data using Excel
24:05
Mo Chen
Рет қаралды 283 М.
Google Sheets - Conditional Formatting
15:01
Learn Google Sheets & Excel Spreadsheets
Рет қаралды 108 М.
Fake watermelon by Secret Vlog
00:16
Secret Vlog
Рет қаралды 31 МЛН