Conditional Formatting Help First Row First Column Data

MeepMeep

New Member
Joined
Nov 28, 2016
Messages
8
Hi All,

I can't seem to find this information anywhere on how to complete this.

I want to create a conditional format formula that will look for data in the first row and first column and highlight cells with that range that are blank with a specified column name.

Example the formula will find that there is data in A3 as the first column and E1 as the first row and that First row data is Saturday, I would like if E3 was blank to be highlighted/filled with a color.

I am trying to do this with the column values of Saturday and Sunday. Any help would be extremely appreciated!
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Or highlight a blank cell in a column with the first row with the data value of Saturday or Sunday
 
Upvote 0
Hi, welcome to the board.

This is probably do-able but I'm not completely clear what you actually want.

Can you please post a small sample of your data, making it clear exactly what should be highlighted by the CF, and why.
 
Upvote 0
I have tp agree with Gerald, what you seek isn't exactly clear but I gave a shot at what i thought you wanted

Its not the best of formulas,

1. Select your data range, i have assumed her A1 to P100, change as necessary


Excel 2010
ABCDE
1bleed
2
3try23
4grab
5red
6trial
7
Sheet4


The conditional formatting formula highlights/colors cell E3 so long as its not blank

=AND(ROW(A1)=MATCH("*",$A$1:$A$100,0),COLUMN(A1)=MATCH("*",$A$1:$P$1,0),INDEX($A$1:$Q$100,MATCH("*",$A$1:$A$100,0),MATCH("*",$A$1:$P$1,0))<>0)=TRUE
 
Upvote 0
Hi All,

Thank you for your replies, here is a sample data

ABCDEFGHI
1SATURDAYSUNDAYMONDAYTUESDAYWEDNESDAYTHURSDAYFRIDAYSATURDAYSUNDAY
2DATA(COLOR)DATADATADATADATADATADATA(COLOR)
3(COLOR)DATADATADATADATADATADATA(COLOR)DATA
4DATA(COLOR)DATADATADATADATADATADATA(COLOR)
5(COLOR)DATADATADATADATADATADATADATA(COLOR)
6(COLOR)DATADATADATADATADATADATADATA(COLOR)

<tbody>
</tbody>


This worksheet will continually update and get longer and longer by adding additional weeks. I am trying to get anything in the columns containing Saturday or Sunday with blank cells to be highlighted.

I marked the blank cells that i wanted colored with (COLOR), I didn't know how to change the color on the tables on here.
 
Upvote 0
Here


Excel 2010
ABCDEFGHI
1SATURDAYSUNDAYMONDAYTUESDAYWEDNESDAYTHURSDAYFRIDAYSATURDAYSUNDAY
2DATADATADATADATADATADATADATA
3DATADATADATADATADATADATADATA
4DATADATADATADATADATADATADATA
5DATADATADATADATADATADATADATA
6DATADATADATADATADATADATADATA
Sheet6


1. Highlight the required range
2. Go to conditional formatting and select to use a formula to format
3 And formula would be
=AND(OR(A$1="SATURDAY",A$1="SUNDAY"),A2="")=TRUE
 
Last edited:
Upvote 0
THANK YOU VERY MUCH!! This was exactly what I needed!

Here

Excel 2010
ABCDEFGHI
1SATURDAYSUNDAYMONDAYTUESDAYWEDNESDAYTHURSDAYFRIDAYSATURDAYSUNDAY
2DATADATADATADATADATADATADATA
3DATADATADATADATADATADATADATA
4DATADATADATADATADATADATADATA
5DATADATADATADATADATADATADATA
6DATADATADATADATADATADATADATA

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet6



1. Highlight the required range
2. Go to conditional formatting and select to use a formula to format
3 And formula would be
=AND(OR(A$1="SATURDAY",A$1="SUNDAY"),A2="")=TRUE
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,861
Members
449,052
Latest member
Fuddy_Duddy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top