Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello all, i have a sheet that i need to delete unwanted columns and
then the wanted columns i need to put in English headings as the original is in german. I use the formula below to get the columns to delete from a list. This works fine and wondered if it could be modified to copy the English heading in row 4 of the sheet list & paste it into row 4 of the other document ?? Sub InsertHaeadings() Dim vList As Variant, lastCol As Long Dim i As Long, res As Variant vList = ThisWorkbook.Worksheets("List").Range _("A1:BN1").Value For i = 160 To 1 Step -1 res = Application.Match(Cells(1, i), vList, 0) If IsError(res) Then Columns(i).Delete Else ???? = If not deleted then copy ???? = and past End If Next Best regards, Les Stout *** Sent via Developersdex http://www.developersdex.com *** |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
help modify code | Excel Programming | |||
Modify existing code to dynamic code | Excel Programming | |||
Help to modify code | Excel Programming | |||
Modify code in UDF | Excel Programming | |||
How to modify VBA code for Add-in? | Excel Programming |