Query on Word file (Append text) activity

Is it possible to always append data in next page of the Word file (instead of having it appended at the end of the document)?

For example, I have two Append text activities which appends “ABCD” and “PQRS” to a word file. Can we have “PQRS” appended at the next page?

string1=ABCD
string2=PQRS
string3=string1+string2.(ABCDPQRS)
You can append string1 & string2
Where ever you want.
If you declear string2 as a global variable then you can append where ever you want.
Hope my inputs are useful