I have a table, "Schedule", and I want the check the table column, "Number". If "Number" in a row is blank I want to change the cell for that row in the column "Name" to be font size 11 non-bold but if "Number" isn't blank I want to change "Name" to font size 12 bold.
I'm not sure how to do this. I also have some 60,000 cells and growing so it needs to do as little work as possible so it stays as fast as possible.
I'll edit this since I added typeface in the question and not in the subject. I was planning on doing this with VBA because I can't do font size in conditional.
With conditional formatting, you can set the font to bold (also change text colour and cell background colour). Unfortunately it can't change font size.
Starting with this table, where
Numberis columnC:You can add conditional formatting with "Use a formula..." for the rule, and set that formula to
=ISBLANK(@$C:$C).(Alternatively you could give a relevant name to the appropriate column and use the column name instead:
=ISBLANK(@registration_number))Then click
Formatand apply Bold style (and/or any highlighting colours).Then in the Conditional Formatting Rules Manager(Conditional Formatting -> Manage rules), change
Applies toto cover your table:Rows where
Numberis blank are now bold.To change font size automatically within Excel, this is only possible with Visual Basic.
You could however periodically filter the table for rows where
Numberis blank and manually set the font size / style.