macdadi112
New member
- Joined
- Dec 5, 2014
- Messages
- 1
- Reaction score
- 0
- Points
- 0
Hi
I cannot get my head round letter sequences (seriously I've tried)
What you have is the full alphabet and increasing in value I can do..
e.g. D ,G, J, M, P (You will start the alphabet again if you reach the end).
What I'm pulling my hair on is going backwards especially when you have to start all over again.
e.g I, D, Y, T, O
What I was thinking something along the line of
IF(65+C14+(3*D14)<=90,CHAR(65+C14+(3*D14)),CHAR(65+((C14+(3*D14))+65)-91))
The following are found in C14 and D14,..
rnd no seq no
20 5
The above are generated at random.
e.g. What I'm trying to do is output the letters of the alphabet..
They can start at any letter and then they increase/decrease by a random number(1-5).
Lets say the first letter output is I..
Then counting back in the alphabet we have H,G,F,E
The second letter output is D.
Then counting back in the alphabet we have C,B,A,Z
The third letter output is Y.
E.t.c.