Thanks, it works a treat. It sends the text to outside the print area
and in dark cells into column D, but I can certainly live with that,
esp. considering the alternative. But what a marvellous bit of code.
I played with it, as I always do, when I get new code, but I'm just
not very good at scripting (even after all these years!!! <g>).
I just finetuned the script since I thought it would be easier to just
delete a sheet with the modified text than go back and erase the
output, even though I could script that, too. Just seems easier to
create a copy of the sheet.
***************************************
Sub Create_WordList()
ActiveSheet.Protect ' this makes sure main sheet is
protected
Application.Goto Reference:="R2C1"
Dim i As Integer
'Sheets("WordSheets wordlist maker").copy After:=Sheets(1)
ActiveSheet.copy After:=Sheets(1)
ActiveSheet.Unprotect 'place at the beginning of the code
Application.Goto Reference:="R1C1"
With Range("A2")
For i = 0 To 3
.Offset(i, 3).Value = .Offset(i, 0).Value
.Offset(i + 5, 3).Value = .Offset(i, 1).Value
Next i
.Offset(4, 3).Value = "*"
End With
Application.Goto Reference:="R2C1"
ActiveSheet.Protect ' place at end of code
End Sub
***************************************
Thanks!

D