+ Reply to Thread
Results 1 to 20 of 20

Replace text in certain color

  1. #1
    Registered User
    Join Date
    03-09-2016
    Location
    Poland
    MS-Off Ver
    2013
    Posts
    9

    Question Replace text in certain color

    I would like to find all red text in a certain range of cells and replace every red fragment with, let's say, "ABC".

    On several forums I found info that it can't be done, because Excel can do it only for full cells with certain formatting, not for formatted fragments.
    However, it turned out to be even worse: I tried replacing cells formatted in red as a whole, and Excel still said it finds nothing. But if the formatting is not a color, but, say, bold, then it works.

    I also found some VB macros meant to achieve a similar goal, but they were all based on the fact that either the text to be replaced or its position in the cell is known.
    In my case I want to replace anything that's red, and I don't know what it can be (an initial/final/middle part of a word or a whole word) and where (at the end/beginning/in the middle of a cell) - it can be anything anywhere.
    Red text can occur in a cell once or more, and I want to replace each occurrence.

    I don't care what the color of the replaced text will be.

    So, e.g.:
    text -> texABC
    text -> teABCt
    text text text -> ABCext ABC text

    Is there any way it can be done?

  2. #2
    Forum Expert
    Join Date
    05-20-2015
    Location
    Chicago, Illinois
    MS-Off Ver
    2016
    Posts
    2,103

    Re: Replace text in certain color

    It can be done. The little procedure below will replace every red character with a black "ABC", so it works with everything except your last example. The procedure below would replace each character, not block of characters, so your last example would end up: ABCext ABCABCABCABC text. I'm still working on a contingency to address that...

    Please Login or Register  to view this content.
    Last edited by CAntosh; 03-09-2016 at 02:34 PM. Reason: left out a line...

  3. #3
    Banned User!
    Join Date
    10-29-2012
    Location
    Europe
    MS-Off Ver
    2013, 2016
    Posts
    318

    Re: Replace text in certain color

    Small change in cantosh code
    for me, code don't work with UsedRange (For Each x In UsedRange)

    Please Login or Register  to view this content.
    Last edited by Indi_Ra; 03-09-2016 at 03:19 PM.

  4. #4
    Forum Expert
    Join Date
    05-20-2015
    Location
    Chicago, Illinois
    MS-Off Ver
    2016
    Posts
    2,103

    Re: Replace text in certain color

    Alright, this should cover it...

    Please Login or Register  to view this content.

    EDIT: Feel free to change the vbBlack and "ABC" in my procedure above to whatever suits your needs.
    Last edited by CAntosh; 03-09-2016 at 02:53 PM.

  5. #5
    Forum Expert
    Join Date
    05-20-2015
    Location
    Chicago, Illinois
    MS-Off Ver
    2016
    Posts
    2,103

    Re: Replace text in certain color

    Quote Originally Posted by Indi_Ra View Post
    Small change in cantosh code
    Apologies. I got careless, then sneaky. My initial procedure in post #2 left out an entire "IF ... THEN" line, which I later edited back in. My post in #2 should be correct now, and my post #4 should cover all of Awijas's examples.

  6. #6
    Registered User
    Join Date
    03-09-2016
    Location
    Poland
    MS-Off Ver
    2013
    Posts
    9

    Re: Replace text in certain color

    Thank you both. With cantosh's code and a modification based on Indi_Ra's code, I was able to make it work.
    The modification was:
    For Each x In [C2:C2001]
    since the range is fixed, and without it I was getting an error.

    There's one more thing I would like to do with this macro before executing the above code: make sure that spaces are not red, and if they are, change their color to auto. How to do it?

  7. #7
    Registered User
    Join Date
    03-09-2016
    Location
    Poland
    MS-Off Ver
    2013
    Posts
    9

    Re: Replace text in certain color

    I found some suggestions:
    http://stackoverflow.com/questions/1...formatted-text
    http://excel.tips.net/T002414_Making...nces_Bold.html
    But they're full of prompts (of what to change), error messages (nothing found) and other unnecessary stuff. I just need a simple "replace red space with auto-color space".

  8. #8
    Forum Expert
    Join Date
    05-20-2015
    Location
    Chicago, Illinois
    MS-Off Ver
    2016
    Posts
    2,103

    Re: Replace text in certain color

    I added a modification that should change red-fonted blank cells with black ones. I also included the C2:C2001 modification to be better suit your range. Let me know if it does the trick.

    Please Login or Register  to view this content.

  9. #9
    Registered User
    Join Date
    03-09-2016
    Location
    Poland
    MS-Off Ver
    2013
    Posts
    9

    Re: Replace text in certain color

    By spaces I meant spaces between words within one cell, not blank cells, so I think the above is not applicable

  10. #10
    Forum Expert
    Join Date
    05-20-2015
    Location
    Chicago, Illinois
    MS-Off Ver
    2016
    Posts
    2,103

    Re: Replace text in certain color

    Ah, I misunderstood. So you don't want to turn red spaces into "ABC"? To clarify: If you have "test test" in a cell in which only the space between the tests is red, you would prefer "test test" with a black space to "testABCtest"?

  11. #11
    Registered User
    Join Date
    03-09-2016
    Location
    Poland
    MS-Off Ver
    2013
    Posts
    9

    Re: Replace text in certain color

    No, I want to turn red spaces into black (auto) spaces in order to AVOID turning them into "ABC" by the main part of the macro.

  12. #12
    Forum Expert
    Join Date
    05-20-2015
    Location
    Chicago, Illinois
    MS-Off Ver
    2016
    Posts
    2,103

    Re: Replace text in certain color

    Try this one, see if I've got it now:

    Please Login or Register  to view this content.

  13. #13
    Registered User
    Join Date
    03-09-2016
    Location
    Poland
    MS-Off Ver
    2013
    Posts
    9

    Re: Replace text in certain color

    The spaces are fine now, thanks. But there's another issue I just noticed: it's replacing characters of ANY color other that "auto", not only red...

  14. #14
    Forum Expert
    Join Date
    05-20-2015
    Location
    Chicago, Illinois
    MS-Off Ver
    2016
    Posts
    2,103

    Re: Replace text in certain color

    Quote Originally Posted by awijas View Post
    it's replacing characters of ANY color other that "auto", not only red...
    Not for me? Can you post a small sample of your workbook so I can try to figure out what you're seeing and why? Be sure to change or remove any sensitive information.

  15. #15
    Registered User
    Join Date
    03-09-2016
    Location
    Poland
    MS-Off Ver
    2013
    Posts
    9

    Re: Replace text in certain color


  16. #16
    Forum Expert
    Join Date
    05-20-2015
    Location
    Chicago, Illinois
    MS-Off Ver
    2016
    Posts
    2,103

    Re: Replace text in certain color

    Quote Originally Posted by awijas View Post
    I'm getting an 'Invalid attachment' message. Can you try again?

  17. #17
    Registered User
    Join Date
    03-09-2016
    Location
    Poland
    MS-Off Ver
    2013
    Posts
    9

    Re: Replace text in certain color

    Sorry for the late reply. I didn't have access to the file either until now. Try this: http://bit.ly/1RaV5d3

  18. #18
    Forum Expert
    Join Date
    05-20-2015
    Location
    Chicago, Illinois
    MS-Off Ver
    2016
    Posts
    2,103

    Re: Replace text in certain color

    Well... that's odd. I downloaded your spreadsheet, and every time I ran the macro on your data, my Excel crashed when it got to C13 (with the green text). If I deleted C13, it ran fine. If I deleted C13 and re-typed the exact same text into C13, green text and all, it ran fine. It left the non-red text alone, as it should. The only time it wouldn't work was on your original data in C13, or your original data in column B copied into column C. It crashed, every time, at C13. Unfortunately, I don't know why. Maybe try creating a completely new set of test data in a different workbook, copying the procedure over, and seeing if you have the same problem? As I said, it's working fine for me on everything but the data set that came with your workbook.

  19. #19
    Registered User
    Join Date
    03-09-2016
    Location
    Poland
    MS-Off Ver
    2013
    Posts
    9

    Re: Replace text in certain color

    Strange... I'll try, but I just wrote the green text yesterday What Excel version do you have? Mine in Pro Plus 2013

  20. #20
    Forum Expert
    Join Date
    05-20-2015
    Location
    Chicago, Illinois
    MS-Off Ver
    2016
    Posts
    2,103

    Re: Replace text in certain color

    Yeah, I don't understand at all. I have Excel 2010. My Excel had no problem with your red text, just the green. I don't think it's an issue of the shade, either, since the macro ran fine when I typed in the same text in the same cell with what appeared to be the same shade of green. For some reason my Excel couldn't seem to evaluate the color of the original, so it crashed. My procedure is designed to ignore anything that isn't red, so all Excel has to do is register the font as 'non-red'. And yet... crash. Strange.

+ 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. Find and Replace Text Color
    By galetondesigns in forum Excel General
    Replies: 7
    Last Post: 12-16-2015, 01:46 AM
  2. [SOLVED] VBA replace text command to replace a formula with text
    By MikeSta4ord in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-04-2015, 01:08 PM
  3. Replies: 4
    Last Post: 12-29-2013, 11:41 PM
  4. Replies: 0
    Last Post: 09-26-2012, 01:08 PM
  5. find in excel replace in word: find/replace text in text boxes and headers
    By dean.rogers in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-10-2012, 12:40 PM
  6. Replies: 0
    Last Post: 02-16-2006, 12:00 AM
  7. change text color based on adjacent cell text color
    By matthewst in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 03-01-2005, 03:49 PM

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