Is there anyway to highlight a range of cells based on a cell value that's on another sheet in the same workbook?
For instance, cell B2 in Sheet1 contains a decimal value (in this case, it is 2). And the expected result is, highlight the range A2:B3 in Sheet 2.
But the cell B2 in Sheet1 is dynamic. Hence if i enter 7, then the range A2:B8 in sheet 2 must be highlighted.
Is this achievable through conditional formatting? I couldn't find a suitable function that could do this type of formatting. Probably it is possible with VBA but I don't know.
=Sheet1!$B$2
is the cell you refer to from you condition and you define the conditions in the cells you want to highlight under which they need to be highlighted. It's quite wide question.. – Han Soalone=Sheet1!$B$2
. Now the biggest question is under what conditions does it need to be triggered? Think conditional formatting that uses a formula to define if the cell needs to be highlighted. It's impossible to list the possibilities, but you should read this to get started - Link – Han Soalone