Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, just a quick question.
Is it possible to colour just one character in a string/text.
For example I would like to colour white the first character in the string "A250" so it is not visible.
How do I go about this?
Can someone help please?
Best
Alhasan
Unfortunately that is not possible but would something like this do instead:
=' ' & mid('A250',2)
as in removing the A and adding a space.