|
| |||||||||
| Tags: columns, excel, macro |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Macro to Add Columns in Excel
I have a Excel spreadsheet to track employee information. I need to add macro in that adds three columns at the end of the first sheet and it must populate the three new columns with formulas on all records in the sheet? Any recommendations and suggestions are appreciated. |
|
#2
| ||||
| ||||
| Re: Macro to Add Columns in Excel
Use this code : Code: Sub CalDat()
Dim wC As Worksheet
Dim wT As Worksheet
Dim rU As Range
Dim lRw As Long
Set wC = Sheets("Code")
Set wT = Sheets("T_Write_off")
Set rU = wsTWO.UsedRange
lRowEnd = rUsed.Rows.Count + rUsed.Row - 1
wT.Range("AH1:AJ1").Formula = wC.Range("AH1:AJ1").Formula
wT.Range("AH2:AJ" & lRowEnd).Formula = wC.Range("AH2:AJ2").Formula
wT.Activate
Range("A1").Select
Selection.End(xlToRight).Select
End Sub |
|
#3
| |||
| |||
| Re: Macro to Add Columns in Excel
Check this for example : Code: Sub addcol() LasCol = Cells(1, Colu.Count).End(xlToLeft).Column Colunt = LastCol Do While Colunt > 1 If Cells(1, Colunt) > Cells(1, ColCount - 1) + 1 Then Columns(Colunt).Insert Cells(1, Colunt) = Cells(1, ColCount + 1) - 1 Else Colunt = Colunt - 1 End If Loop |
|
#4
| ||||
| ||||
| Re: Macro to Add Columns in Excel
You need another macro to rearrange the position of columns. For eg. in excel there are A, B, C, D ,E1 COLUMNS. (three in your case). Split your screen, use the F8* key and see what you procedure does work in Excel. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Macro to Add Columns in Excel" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to sort spreadsheet or columns in Excel | Kungfu Pandey | Windows Software | 1 | 08-01-2012 02:13 PM |
| How to multiply two columns in Excel | Lanka Boy | Windows Software | 2 | 08-01-2012 03:06 AM |
| excel 2007 columns run right to left | syed_sal_ali | MS Office Support | 9 | 26-10-2011 03:44 PM |
| Excel 2003 Macro doesn't work in Excel 2007 | jjaw | Windows Software | 1 | 16-04-2011 05:35 AM |
| Microsoft Project Macro to concatenate columns | Rajee | Software Development | 0 | 11-12-2007 08:18 PM |