hi,
I need to move some of the text from page 1 to page 2 in the Word document. Any suggestions?
Please consider as urgent.
hi,
I need to move some of the text from page 1 to page 2 in the Word document. Any suggestions?
Please consider as urgent.
Hello mani,
Please llet me know if this help’s you.
is there any method which can we use without opening word doc? or any c# code?
Identify the text or elements you want to move on page 1 → use activities like “Find Text Position” or “Get Text” to locate specific text on page 1. These activities will help you identify the text you want to move.
Remove or cut the identified text from its current location → you can use string manipulation methods or regular expressions to remove the text from the document content string variable. Alternatively, you can use activities like “Replace” to replace the text with an empty string, effectively removing it. If you want to preserve the text for later use, you can store it in another variable.
Insert or paste the text into the desired location on page 2 → If you know the structure of your document and how to navigate to page 2 reliably, you can use activities like “Send Hotkey” with shortcuts like Ctrl+G (Go To) and enter the page number to navigate to page 2 programmatically. Once you’re on page 2, you can use activities like “Type Into” to paste the previously removed text into the desired location.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.