Is there someone who can help me color code part of this vba macro? What this macro does is take a range of numbers and tells the order and amount of zeros vs. non-zeros. So for example if there was a range of 1-6-0-4-0-0-7-4 this macro would return in one cell "2-1-1-2-2"- the first 2 would represent the 1 and the 6 from the original range, the next 1 would represent the first 0 from the original... What I want to do is color code part of the macro so that any return numbers that represent the number of zeros would be red. So in the example of "2-1-1-2-2" the first 1 and the first 2 would be red since they represent zeros from the original range. I tried to do it in vba by inserting [color 3] under the part that controls the numbers that return the zero representations but it either does not run when I do that or it will not color code. The vba code that runs this formula is listed below, anyone out there know of a trick to solve this? Thanks in advance!