Use get data as datatable action for excel1 use set cell action to set in another Excel 2
Hi, I ran some tests on using keystrokes to copy-paste data from Excel1 to Excel2. Here are my results:
Using uppercase keystrokes ([CTRL DOWN]A[CTRL UP], [CTRL DOWN]C[CTRL UP], [CTRL DOWN]V[CTRL UP]
) was not successful. Ctrl + V pasted the last data in my clipboard, not the data from Excel1.
Using lowercase keystrokes ([CTRL DOWN]a[CTRL UP], [CTRL DOWN]c[CTRL UP], [CTRL DOWN]v[CTRL UP]
) worked fine.
Reason: This happens because [CTRL DOWN] + uppercase letter [CTRL UP]
is interpreted as [CTRL DOWN] + [Shift DOWN] + letter [Shift UP] + [CTRL UP]
, which behaves differently. Therefore, use lowercase letters in your keystroke sequence.
Suggestions:
- Use enough delay between keystrokes to avoid synchronization issues.
- Alternative method is to use "Excel advanced: Get worksheet as data table" from Excel1 and "Excel advanced: Write from data table" into Excel2 for more reliable transfers.
Please mark the response as a solution if it helps you.