MrKowz
Well-known Member
- Joined
- Jun 30, 2008
- Messages
- 6,653
- Office Version
-
- 365
- 2016
- Platform
-
- Windows
I'm not sure if this is even possible, but is there a way I can write a macro that will put a highlight behind every other letter/number in a cell?
I was thinking using a for loop, telling it to highlight every letter/number that has an even number as its spot in the string... like for the following:
135792468
I want to highlight 3,7,2,6.
My reasoning for doing this is that I have about 400 strings of text ~200 characters in length that I need to pick apart to debug a piece of programming code written years ago. The code might take the first 4 characters, the next 7, the next 5, the next 3, and so on; I need a way to make this visually easier to work on.
Thank you
I was thinking using a for loop, telling it to highlight every letter/number that has an even number as its spot in the string... like for the following:
135792468
I want to highlight 3,7,2,6.
My reasoning for doing this is that I have about 400 strings of text ~200 characters in length that I need to pick apart to debug a piece of programming code written years ago. The code might take the first 4 characters, the next 7, the next 5, the next 3, and so on; I need a way to make this visually easier to work on.
Thank you