We can specify conditional formatting in cells C1, C2, C3, ... C65536
as
=if(B1>100,1,0),
=if(B2>100,1,0),
=if(B3>100,1,0),
....,
=if(B65536>100,1,0), respectively.
I wonder if there is a better way to do it, such as to highlight the
entire row-C and just specify conditional formatting once as
=if(B*>100,1,0),
where B* means the cells to the left of any cell C*.
Can anyone help me how to do that?