Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this UDF:
name in A1 this in B1 =scramble(a1) Function Scramble(oldname) n = Len(oldname) newname = "" Do i = Int(Rnd() * n) + 1 c = Mid(oldname, i, 1) If c < "*" Then newname = newname & c oldname = Replace(oldname, c, "*", , 1) End If Loop Until Len(newname) = n Scramble = LCase(newname) End Function "SusanB" wrote: I need to scramble the letters in a long list of names (i.e., from mary to yamr). Does anyone know a way to do that? Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to Change List Based on Value Chosen in Another List | Excel Worksheet Functions | |||
Matching Lists Where List Size is Unequal | Excel Discussion (Misc queries) | |||
find names on list 1 in list 2. list 1 4000 names list 2 400 name | Excel Worksheet Functions | |||
loop trough e-mail address list to send task lists with outlook | Excel Discussion (Misc queries) | |||
Extracting Values on one list and not another | Excel Discussion (Misc queries) |