+ Reply to Thread
Results 1 to 44 of 44

Conditional formatting and multiple formulas

  1. #1
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Conditional formatting and multiple formulas

    Hi everyone, first post!
    I'm somewhat of a novice at excel and haven't quite dabbled in multiple formulas yet..

    I'm trying to get a date to highlight read when a cell contains one of 2 pieces of text and is over 7 days

    From my fiddling I was considering using a combination of
    =IF(ISNUMBER(SEARCH("Data Requested",B3)) [But I need to have this text or "Partial Data Received"]
    and
    =IF(B3>=TODAY()-7)

    and then input this into the conditional formatting section. However I'm not sure how to get them to work together.

    excel.png
    Attached Files Attached Files
    Last edited by PHBAYFORD; 03-04-2022 at 08:37 AM. Reason: Inserting workbook

  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,809

    Re: Conditional formatting and multiple formulas

    Welcome to the forum.

    There are instructions at the top of the page explaining how to attach your sample workbook.

    A good sample workbook has just 10-20 rows of representative data that has been desensitised. It also has expected results mocked up, relevant cells highlighted and a few explanatory notes.

    Administrative Note:

    Members will tailor the solutions they offer to the version (NOT release number like 2008) of Office (Excel, NOT Windows) that you have. Please check that your forum profile is up-to-date in this respect. If you aren't sure, in Excel go to File | Account and report what it says below the MS logo at the top of that page. If your version is for Mac, please also state this. Thanks.
    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 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,809

    Re: Conditional formatting and multiple formulas

    For a CF rule, you could try this (untested as no workbook provided):

    =AND(B3>=TODAY()-7,OR(ISNUMBER(SEARCH("Data Requested",B3)),ISNUMBER(SEARCH("Partial Data Received",B3))))
    Last edited by AliGW; 03-04-2022 at 04:48 AM. Reason: Typo fixed.

  4. #4
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,434

    Re: Conditional formatting and multiple formulas

    Untested, but try:
    =AND(B3>=TODAY()-7, OR(ISNUMBER(SEARCH("Data Requested",B3)),
    ISNUMBER(SEARCH("Partial Data Received",B3))))
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  5. #5
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    I have attached a workbook now
    The formula is working but If the date is within 7 days I don't need the value to be true.

    (Testing in cell before using conditional formatting)

  6. #6
    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,809

    Re: Conditional formatting and multiple formulas

    What you really need, then, is this:

    =OR(B2 < TODAY()-7,ISNUMBER(SEARCH("Data Requested",B2)),ISNUMBER(SEARCH("Partial Data Received",B2)))

    Your profile still says 2008 - that isn't right, is it???

  7. #7
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    That still returns the same result.
    Last edited by AliGW; 03-04-2022 at 06:07 AM. Reason: PLEASE don't quote unnecessarily!

  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,809

    Re: Conditional formatting and multiple formulas

    OK, then you need to explain your logic clearly.

    There is clearly more to it than what you ahev told us. Please talk us through those rows you have highlighted.

  9. #9
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    So the ones I've highlighted need to be false because they are within the 7 days. Its only dates over 7 days that I need Data Received or Partial Data Received to be searched and return True
    Last edited by AliGW; 03-04-2022 at 06:24 AM. Reason: PLEASE don't quote unnecessarily!

  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,809

    Re: Conditional formatting and multiple formulas

    Sorry! Silly mistake by me!

    =AND(A2>=TODAY()-7,OR(ISNUMBER(SEARCH("Data Requested",B2)),ISNUMBER(SEARCH("Partial Data Received",B2))))

    Which version of Excel are you using?
    Last edited by AliGW; 03-04-2022 at 06:26 AM. Reason: Typo fixed.

  11. #11
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    This gave the opposite result but by Adding NOT the formula worked. THANK YOU!
    =AND(NOT(A15>=TODAY()-7),OR(ISNUMBER(SEARCH("Data Requested",B15)),ISNUMBER(SEARCH("Partial Data Received",B15))))

    I'm going to be completely honest and say I don't know. This is a work laptop so I get what I am given. When I click file > account it says 2008

  12. #12
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    Okay so this gave me the correct result in cell but not when I copy it to conditional formatting

  13. #13
    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,809

    Re: Conditional formatting and multiple formulas

    Please attach the workbook where you have tried to add the CF and I will troubleshoot it for you.

    Based on what you have said, this should work:

    =AND(A15 < TODAY()-7),OR(ISNUMBER(SEARCH("Data Requested",B15)),ISNUMBER(SEARCH("Partial Data Received",B15))))

    Regarding your profile, you CANNOT be using the ANCIENT Excel 2008, can you? Don't even think there was a version of that name.

    Look:
    Attached Images Attached Images

  14. #14
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,434

    Re: Conditional formatting and multiple formulas


  15. #15
    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,809

    Re: Conditional formatting and multiple formulas

    LOL! I do hope not, Trevor - but thanks for the link.

  16. #16
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    I've replaced the testing document with one I've tried to use CF on.

    Oh sorry yes its 365 (it says 2008 underneath ??)

  17. #17
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,434

    Re: Conditional formatting and multiple formulas

    The CF formula works fine, as far as I can see. Maybe just that the current date has moved on since you created, tested and posted the sample workbook?

  18. #18
    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,809

    Re: Conditional formatting and multiple formulas

    Oh sorry yes its 365
    As explianed in post #2, 2008 in this case is a release number. Your version is 365 - please update your profile.

  19. #19
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    Attachment 771032

    I'm doing it all today. This is a screenshot of what I can see. When I click apply nothing changes colour.

  20. #20
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    Quote Originally Posted by AliGW View Post
    As explianed in post #2, 2008 in this case is a release number. Your version is 365 - please update your profile.
    Ok I will do. I literally only set this up today to ask this question haha.

  21. #21
    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,809

    Re: Conditional formatting and multiple formulas

    1. Please update your profile!!!
    2. Please attach the workbook (NOT a picture of it).

  22. #22
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    Quote Originally Posted by PHBAYFORD View Post
    I've replaced the testing document with one I've tried to use CF on.

    Oh sorry yes its 365 (it says 2008 underneath ??)
    1. I have
    2. I have

  23. #23
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    Quote Originally Posted by AliGW View Post
    1. Please update your profile!!!
    2. Please attach the workbook (NOT a picture of it).

    I attached an extra picture to explain what I am seeing as you are both seeing the colours and I am not.

  24. #24
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,434

    Re: Conditional formatting and multiple formulas

    Look at the update example with Ali's formula both in the sheet AND in the CF.
    Attached Files Attached Files

  25. #25
    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,809

    Re: Conditional formatting and multiple formulas

    CF rule for A2:

    =AND($A2 < TODAY()-7,OR(ISNUMBER(SEARCH("Data Requested",$B2)),ISNUMBER(SEARCH("Partial Data Received",$B2))))

    Applies to:

    =$A$2:$B$15

    Do NOT use full column references - it will not work.

    AliGW on MS365 Insider (Windows) 64 bit

    A
    B
    C
    1
    DATE REQUESTED
    STATUS
    Should be True
    2
    19/02/2022
    Other N
    3
    20/02/2022
    Data Requested Y
    4
    21/02/2022
    Data Requested Y
    5
    22/02/2022
    Other N
    6
    23/02/2022
    Data Requested Y
    7
    24/02/2022
    Partial Data Received Y
    8
    25/02/2022
    Data Requested N
    9
    26/02/2022
    Data Requested N
    10
    27/02/2022
    Other N
    11
    28/02/2022
    Data Requested N
    12
    01/03/2022
    Data Requested N
    13
    02/03/2022
    Other N
    14
    03/03/2022
    Data Requested N
    15
    04/03/2022
    Data Requested N
    Sheet: Sheet2
    Attached Files Attached Files
    Last edited by AliGW; 03-04-2022 at 07:30 AM. Reason: Workbook attached.

  26. #26
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,434

    Re: Conditional formatting and multiple formulas

    BUT, if you do use full column references, the formula needs to refer to row 1

    Formula: copy to clipboard
    Please Login or Register  to view this content.

  27. #27
    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,809

    Re: Conditional formatting and multiple formulas

    I attached an extra picture ...
    Please don't attach screenshots - we can't troubleshoot them. Attach WORKBOOKS!

    I have shown you how to do it in post #25 above.

  28. #28
    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,809

    Re: Conditional formatting and multiple formulas

    @Trevor - yes, the references could be set to $A1 and $B1, but A1 would need to be selected when you set the rule, otherwise weird things can happen!

  29. #29
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    I don't understand why its not working on mine??

  30. #30
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,434

    Re: Conditional formatting and multiple formulas

    @Ali: just explaining to the OP that if the range is A:A, the formula must relate to row 1. I think, by implication, if you have selected the entire column, it will apply to row 1.

  31. #31
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,434

    Re: Conditional formatting and multiple formulas

    Well, you have two examples. What's different between them and yours?

  32. #32
    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,809

    Re: Conditional formatting and multiple formulas

    @Trevor - if you set the formula at $A2 and then choose $A:$A in the applies to range, everything will be OFSET by one row.

    @PHBAYFORD

    Once again, attach the WORKBOOK so that we can troubleshoot what you have done. Or are you saying that you are unable to enter a CF formula?

    What, PRECISELY, is NOT WORKING?

  33. #33
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    Do you have to capitalise everything? it comes across as aggressive.
    I'm sorry that i'm struggling.
    When I apply the conditional formatting it doesn't do anything. Nothing changes colour.

    The formula that is working in cell and giving me the result I need is this.
    =AND(NOT(A15>=TODAY()-7),OR(ISNUMBER(SEARCH("Data Requested",B15)),ISNUMBER(SEARCH("Partial Data Received",B15))))

    When I put it in conditional formatting nothing happens to any cells.
    Its the same workbook. But as you wish I have replaced it with what I've just done again in case it didn't save last time.

  34. #34
    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,809

    Re: Conditional formatting and multiple formulas

    No, you are incorrect - I am capitalising the key words so that you know what information we need to help you. Apologies if you feel I am being aggressive, but I have asked to see your workbook four times now, and still you have not provided it. If you do, I (or someone else) cam tell you what you have done wrong. What is stopping you from providing it?

    My only wish is to help you resolve this without going round in circles (which is what we are doing now because you haven't attached the workbook).

    It has been three and a half hours now - we could have had this sorted in ten minutes.
    Last edited by AliGW; 03-04-2022 at 08:00 AM.

  35. #35
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    I have attached a workbook. to the original post.. like I keep telling you.
    How do I add it to a comment?

  36. #36
    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,809

    Re: Conditional formatting and multiple formulas

    1. Select cell A2.
    2. Open the CF formula dialog and use this CF rule: =AND($A2 < TODAY()-7,OR(ISNUMBER(SEARCH("Data Requested",$B2)),ISNUMBER(SEARCH("Partial Data Received",$B2)))) - the formula you have used is referencing the wrong row and does not have the anchored cells ($A2 and $B2).
    3. In the Applies to box, type your range (e.g. =A$2:B$15).
    Attached Files Attached Files
    Last edited by AliGW; 03-04-2022 at 08:07 AM. Reason: Workbook attached.

  37. #37
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,434

    Re: Conditional formatting and multiple formulas

    @Ali:
    @Trevor - if you set the formula at $A2 and then choose $A:$A in the applies to range, everything will be OFSET by one row.
    I wouldn't do it that way. I'd select column A, then select CF, and then put the formula in, etc.

  38. #38
    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,809

    Re: Conditional formatting and multiple formulas

    That's the other way.

  39. #39
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    I'm assuming you found my workbook?

    Okay thank you that worked. (Still don't know why mine wasn't)
    So to apply it to a whole column I need to use. =$A:A if I change the formula to A1 instead of A2?

  40. #40
    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,809

    Re: Conditional formatting and multiple formulas

    @PHBAYFORD

    Still don't know why mine wasn't
    I have tried to explain again in post #36. Let me know if this makes any more sense to you.

    So to apply it to a whole column I need to use. =$A:A if I change the formula to A1 instead of A2?
    Yes, but before you do, delete the other rule and select cell A1 when you apply the rule instead of A2.

    To be clear, the formula must be this:

    =AND($A1 < TODAY()-7,OR(ISNUMBER(SEARCH("Data Requested",$B1)),ISNUMBER(SEARCH("Partial Data Received",$B1))))

    And the applies to range this:

    =$A:$B
    Attached Files Attached Files
    Last edited by AliGW; 03-04-2022 at 08:15 AM. Reason: Workbook with $A1/$B1 version attached.

  41. #41
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    Okay I can get it to work in my test workbook (the one you have)
    But when I do it on the real workbook (containing confidential details so i cant share it) it works for some but not others?
    For example 14/02/2022 is highlighted but not 07/02/2022 even though both of them are Partial Data Received.

  42. #42
    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,809

    Re: Conditional formatting and multiple formulas

    OK. The first thing to check is that all of your dates are real dates.

    1. Select the column containing the dates.
    2. Change the formatting of the column from Date to Number or General.

    Do ALL of the dates change to a 5-digit serial number?

  43. #43
    Registered User
    Join Date
    03-04-2022
    Location
    Wales
    MS-Off Ver
    365
    Posts
    24

    Re: Conditional formatting and multiple formulas

    Nevermind I got it to work. Thank you so much. Sorry i'm a little slow and confusing.

  44. #44
    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,809

    Re: Conditional formatting and multiple formulas

    Great! You are welcome, and please understand that sometimes we have to emphasise things to get things across.

    I had not seen your updated workbook - I was expecting you to attach it to a new post, not to the original post.

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

    Also, if you have not already done so, you may not be aware that you can thank those who have helped you by clicking the small star icon located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of all those who offered help.

+ 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. Conditional Formatting on Multiple Cells with Formulas
    By Beh162 in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 07-09-2018, 11:43 PM
  2. [SOLVED] Create Macro to execute multiple Conditional Formatting Formulas
    By lashellr in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 10-09-2014, 05:16 PM
  3. [SOLVED] Multiple Formulas in Conditional Formatting
    By Bigadz in forum Excel General
    Replies: 2
    Last Post: 04-17-2012, 03:52 AM
  4. Replies: 4
    Last Post: 01-31-2012, 04:36 AM
  5. Conditional Formatting Formulas for Multiple Dates
    By smart_as in forum Excel General
    Replies: 4
    Last Post: 03-02-2011, 06:03 PM
  6. Replies: 12
    Last Post: 08-21-2009, 11:23 AM
  7. Replies: 1
    Last Post: 08-20-2009, 10:58 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