Ok i have two lists on my form that both have wordlists in them. I want to do two things, using the neatest and quickest code possible.

First

It will go down list 1 using the first word, and go down list 2 using the first word and merge them together and add them to list 3.

So if list1 was

Richard
Stephen
Shane

and list 2 was

Love
Simple
Clever

i would get the following

RichardLove
StephenSimple
ShaneClever

Second

It will go down list 1 using the first word, and go down list 2 using all the words and merge them together and add them to list 3.

So if list1 was

Richard
Stephen
Shane

and list 2 was

Love
Simple
Clever

i would get the following

RichardLove
RichardSimple
RichardClever
StephenLove
StephenSimple
StephenClever
ShaneLove
ShaneSimple
ShaneClever

Hope this is clear and all help appreciated.

Regards