+ Reply to Thread
Results 1 to 4 of 4

Conditional Formatting: Format Cell if Indicator on first cell in column AND no formula

  1. #1
    Registered User
    Join Date
    06-17-2020
    Location
    Washington, DC
    MS-Off Ver
    Windows 10 Pro
    Posts
    5

    Conditional Formatting: Format Cell if Indicator on first cell in column AND no formula

    Hi All,

    I'm looking for create a conditional formatting rule that formats a cell (fills cell w/ yellow background shading) if two conditions are both met:

    1) in row 1 of whatever column the cell is in, the cell must contain the letter E hard-coded
    2) in the cell to be formatted, the contents must be-hard coded (cannot be a formula)

    I think I might be close to getting it right, but something is missing and I could use the Forum's help. Here is what I've done so far:

    1) created a new conditional formatting rule that applies to the entire worksheet
    2) used this formula to determine which cells to format:

    =AND(RIGHT(A$1,1)="E",CellHasFormula=FALSE, ISNUMBER($1:$1048576))

    3) determined that formula applies to all rows (=$1:$1048576)


    I have attached the workbook I'm using, and if you look at the rules manager, you can see what I've attempted to do. If this formatting rule works as intended, cell I4 should be yellow/blue font (because it's hard-coded and contains an E in cell I1), cell I3 should not be formatted (it contains a formula), and cells H3/H4 should also not be formatted (they do not contain an E in cell H1).

    Any thoughts/assistance are very much appreciated, and I thank you for taking the time to read my question.

    Best,

    RK
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    2,823

    Re: Conditional Formatting: Format Cell if Indicator on first cell in column AND no formul

    I assume you also don't want the first row highlighted (even though the E's are hard-coded. Also, you say "If the cell CONTAINS an E", but your example is only if it ENDS in an E. If both are true, then try this:

    =AND(RIGHT(A$1,1)="E",ISFORMULA(A1)=FALSE,A1<>"",ROW()<>1)

    If it's that the cell in the first row CONTAINS an E, then try this:

    =AND(ISNUMBER(SEARCH("E",A$1)),ISFORMULA(A1)=FALSE,A1<>"",ROW()<>1)

  3. #3
    Registered User
    Join Date
    06-17-2020
    Location
    Washington, DC
    MS-Off Ver
    Windows 10 Pro
    Posts
    5

    Re: Conditional Formatting: Format Cell if Indicator on first cell in column AND no formul

    Gregb11,

    Thank you so much for your prompt/helpful reply. That was exactly what I needed, and now using this I can go and implement other formatting in my sheet. Thank you so much for the explanation! Marking thread as solved.

    Best,

    RK

  4. #4
    Forum Expert
    Join Date
    02-10-2019
    Location
    Georgia, USA
    MS-Off Ver
    Office 365
    Posts
    2,823

    Re: Conditional Formatting: Format Cell if Indicator on first cell in column AND no formul

    You're welcome. Glad it worked.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 3
    Last Post: 11-02-2017, 10:54 AM
  2. Replies: 2
    Last Post: 12-05-2014, 07:15 AM
  3. Conditional Formatting - Format row based on cell value in specific column
    By Kite3 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 10-08-2013, 12:23 AM
  4. Replies: 5
    Last Post: 06-30-2013, 06:54 PM
  5. [SOLVED] Format Cell that hold a formula using a UDF and Conditional formatting
    By CliffB382 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-09-2012, 01:55 PM
  6. Replies: 1
    Last Post: 04-26-2010, 04:53 AM
  7. conditional cell format based on cell in same row, previous column
    By tamiluchi in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 05-03-2006, 11:15 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1