Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Have you ACTUALLY tried doing that on your sheet?Can I select cells (i,2) (i,3) (i,5) in one statement?(non adjacent cells)
Furthermore your Range syntax is incorrect...Microsoft Office Excel
That command cannt be used on multiple selections!
Application.Union(Range(cells(i,2), cells(i,3)), cells(i, 5)).Select
Union(Range("F23:G23"), Range("J23")).Copy
Application.Union(Cells(i + 1, 1), Cells(i + 1, 3)).Copy
i = 1
Application.Union(Cells(i + 1, 1), Cells(i + 1, 3)).Copy [a10]
WHY?However after this we can not paste in A10 & C10.