You are on page 1of 2

WORDS SCRAMLED WORDS

1 Paraphrasing arpashpnirag
2 Astraphobia htirbopaaas
3 Gamophobia paogmohabi
4 Cornea eocran
5 Mount Everest ronmeet vuets
6 Francisco Dagohoy caosfiyg dohrcano
7 Magma mgmaa
8 Magnetoreception tetmrnconeeapigo
9 Leopard eraodpl
10 Elephant eanplthe
HOW TO SCRAMBLED WORDS?

1. Press Alt+F11
2. Click insert Menu
3. Paste this code:

Function Scramble(oldname)
On Error Resume Next
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

4. Press ALT+Q to Exit


5. then Enter the formula = scramble(c3)

You might also like