My question is quite straightforward - or at least, it should be!
I have an Excel sheet with dates and weekdays laid out across the top three rows. I want to highlight all columns in a particular colour where the weekday row (row 3) contains "Sat" or "Sun". This is quite straightforward in a basic sense, using the Conditional Formatting formula:
IF(OR(G$3="Sat",G$3="Sun")
... and applying a background colour. However, I want to be able to copy & paste this formatting across the entire year's worth of dates (365 columns). Obviously, I need to reference relative cells. But it's not working. When I copy the formatting, it defaults back to G$3.
I want row 3 (so $3 should be correct). But the column should change. Without the $ sign, the letter should change. But it's not changing.
Why is this happening? How can I make the reference relative: i.e, reference the current column's Row 3, to see if it's "Sat" or "Sun"?