"RICK" <RICK@xxxxxx> wrote in message
news:F73BB2A2-98D0-4BBC-B3E5-2C347A597962@xxxxxx
Quote:
>I have a string of of characters that are being stored in a variable. I
> would like to randomize those characters. How can I do that?
>
> Rick
If your string contains n characters then you could use the rnd
function to generate n integers between 1 and n, making sure
that each number is unique. You then use these numbers to
rearrange the characters in your string.