I have an 2007 Excel spreadsheet. One sheet is a master list of "stuff". For the second sheet, I'd like for it to be a carbon copy of the master sheet, but with some conditional formatting on the cells (basically alternating colors for each row). The problem that I'm having is if I use something like
it doesn't reference the formatting of the text in the master sheet. By that I mean if something is bold in the master, it doesn't show as bold in the new sheet. Is there a way to do this? Note that I use the IF above because blank cells come over as 0's.
Code:
=IF(Master!A1=0,"",Master!A1)
it doesn't reference the formatting of the text in the master sheet. By that I mean if something is bold in the master, it doesn't show as bold in the new sheet. Is there a way to do this? Note that I use the IF above because blank cells come over as 0's.