How to change columns order? A to C / B to A ..etc #2497
Replies: 2 comments 1 reply
-
|
Beta Was this translation helpful? Give feedback.
-
Hi ! 1/ Solved like that: 2/ the official documentation is not useful at this point for beginners ^-^ Hope I can get some help with the 3rd question!! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, guys!
1/ Can anyone tell me how to change the order of columns using this package?
2/ Where can I find all functions used with this package (like setCellValue/removeColumnByIndex/getMergeCells...)?
3/ How to save multi sheets in one CSV workbook?
4/ How to get the Workbook name?
for the 1st question need like that in VBA:
Sub MoveColiD() For i = 1 To NbrSheets Sheets(i).Columns("G:G").Cut Sheets(i).Columns("A:A").Insert Shift:=xlToLeft Next I End Sub
This code will move data from Column G to column A without deleting A data (just like inserting new col before the actual A)
Thanks in advance guys!
Beta Was this translation helpful? Give feedback.
All reactions