In Tab1, I want a cell (lets call it A1) to turn red if the number in a cell (say... B1) on Tab2 is negative.
Is there a way I can do this?
In Tab1, I want a cell (lets call it A1) to turn red if the number in a cell (say... B1) on Tab2 is negative.
Is there a way I can do this?
Select Tab1
A1 then Format, Conditional formatting..., Format cells if..., Custom formula is:
=indirect("Tab2!B"&1)<0
choose red fill and click Done.
See Google Spreadsheet Conditional Formatting Based on another Cell Value for how to do this.
If you want to reference a cell from a different tab you would write 'Tab Name'!B2
instead of just B2
, where 'Tab Name'
is the name of the tab that you are referencing.