+ Reply to Thread
Results 1 to 13 of 13

Conditional Format: Want Respective suppliers in list turn into red

  1. #1
    Registered User
    Join Date
    05-06-2021
    Location
    London
    MS-Off Ver
    10
    Posts
    24

    Conditional Format: Want Respective suppliers in list turn into red

    Hi

    I need help in conditional formatting I need to put formula in (Mechanical sheet) when respective suppliers limit in (Mechanical limit sheet) reduced to zero or below I want that suppliers in (mechanical sheet) and its amount turn into red. I am using this formula what it did not work.

    ='Mechanical Limit'!$F$3:$F$17<=0,match($C$6,'Mechanical Limit'!$B$3:$B$17,0))

    Thanks
    Attached Files Attached Files
    Last edited by AliGW; 05-29-2022 at 11:54 PM.

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,430

    Re: Help require in Conditional Formatting

    Administrative Note:

    We would very much like to help you with your query, however the thread title does not really convey what your request is about. Tell us what you are trying to do, not how you think it should be done.

    Please take a moment to amend your thread title. Make sure that the title properly explains your request. Your title should be explicit and not be generic (this includes function names used without an indication of what you are trying to achieve).

    Please see Forum Rule #1 about proper thread titles and adjust accordingly. To edit the thread title, open the original post to edit and then click on Go Advanced (bottom right) to access the area where you can edit your title.

    (Note: this change is not optional. No help to be offered until this moderation request has been fulfilled.)
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,598

    Re: Help require in Conditional Formatting

    wrong solution to wrong problem
    Last edited by protonLeah; 05-28-2022 at 05:25 PM.
    Ben Van Johnson

  4. #4
    Registered User
    Join Date
    05-06-2021
    Location
    London
    MS-Off Ver
    10
    Posts
    24

    Re: Conditional Format: Want Respective suppliers in list turn into red when Amount below

    Hi AliGW,

    Thanks I have just amend it with more detail. Hope now someone will help me out. I have really get my head around it but couldn't get the solutions

    Thanks Again

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,430

    Re: Conditional Format: Want Respective suppliers in list turn into red when Amount below

    Thank you.

    See post #3.

  6. #6
    Registered User
    Join Date
    05-06-2021
    Location
    London
    MS-Off Ver
    10
    Posts
    24

    Re: Conditional Format: Want Respective suppliers in list turn into red when Amount below

    Hi protonLeah,

    Thanks, but what I am after is actually very simple. I want when Limit remaining column in (Mechanical limit sheet) reduced to zero or below in negative the respective suppliers in (Mechanical sheet) turn into red. I do not need to calculate the sum of these suppliers as it is being already calculated into Mechanical limit sheet.

    Thanks again

  7. #7
    Registered User
    Join Date
    05-06-2021
    Location
    London
    MS-Off Ver
    10
    Posts
    24

    Re: Conditional Format: Want Respective suppliers in list turn into red when Amount below

    Hi

    Can someone please answer.

    Thanks

  8. #8
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,430

    Re: Conditional Format: Want Respective suppliers in list turn into red when Amount below

    You will need to provide 15-20 rows of sample results, manually mocked up, with explanatory notes explaining your logic. Do this in the attachment and attach it again, please.

  9. #9
    Registered User
    Join Date
    05-06-2021
    Location
    London
    MS-Off Ver
    10
    Posts
    24

    Re: Conditional Format: Want Respective suppliers in list turn into red when Amount below

    Hi AliGW,

    Thanks, I have done and also write little more description for clarity. Hope this should be fine now.

    Thanks again

  10. #10
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,430

    Re: Conditional Format: Want Respective suppliers in list turn into red when Amount below

    No, it isn't fine.

    Please MOCK UP with manual shading the cells you want to turn red on that worksheet. Add a few notes explaining WHY.

    You have told me nothing new here. Sorry - you have to give more, not simply keep repeating the same thing over and over again - that does not make anything clearer.

  11. #11
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,704

    Re: Conditional Format: Want Respective suppliers in list turn into red when Amount below

    Select all the cells from $D$6:$D$454 then click on Conditional Formatting | New Rule | Use a formula... , then enter this formula in the dialogue box which pops up:

    =AND(C6<>"",VLOOKUP(C6,'Mechanical Limit'!$B$3:$F$21,5,0)<=0)

    Click on the Format button | Fill tab and choose red. You might also want to change the foreground colour to white and bold, by clicking on the font tab. Then click on OK twice to exit the dialogue box, and Excel will automatically adjust the cell references to suit the cells you had selected initially, so you only need to do this once.

    Then to test it out you could manually adjust the credit remaining for City Plumbing, say, on the other sheet to zero or negative, and then see the results on the Mechanical sheet.

    Hope this helps.

    Pete

  12. #12
    Registered User
    Join Date
    05-06-2021
    Location
    London
    MS-Off Ver
    10
    Posts
    24

    Re: Conditional Format: Want Respective suppliers in list turn into red when Amount below

    Hi Pete,

    Fantastic ! and absolutely stunning. Much appreciated.

    Thanks to all.

  13. #13
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,704

    Re: Conditional Format: Want Respective suppliers in list turn into red when Amount below

    You're welcome, and thanks for marking the thread as Solved.

    As you are relatively new to the forum, you might like to know that you can directly thank those who have helped you by clicking on the small "star" icon located in the lower left corner of a post that you have found to be helpful (not just in this thread - for any post that has helped you). This also adds to the reputation of the poster (the small green bars in the poster's profile).

    Pete

+ 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. [SOLVED] Use formatting rules to require and restrict data in cells
    By Hedy in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 08-30-2018, 04:23 PM
  2. Help require for conditional formatting
    By mso3 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-19-2015, 05:16 AM
  3. Require flexible conditional formatting
    By DespoExcel in forum Excel Formulas & Functions
    Replies: 15
    Last Post: 10-21-2014, 02:47 AM
  4. [SOLVED] Formual require for formatting the text columns.
    By kasi.maddula in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 12-31-2013, 11:38 PM
  5. Formual require for formatting the text columns.
    By kasi.maddula in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 12-31-2013, 06:08 AM
  6. Does this action require >>>Conditional Formatting????
    By thursday140 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-04-2013, 09:59 AM
  7. Would this require a program in EXCEL? multiple conditional statements
    By John David in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 05-19-2006, 04:25 PM

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