+ Reply to Thread
Results 1 to 31 of 31

Macro to act differently on selected Multiple Columns

Hybrid View

  1. #1
    Registered User
    Join Date
    11-03-2008
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    2,521

    Re: Macro to act differently on selected Multiple Columns

    Thanks a lot, xlbiznes...

    But there is a small issue, the first column B in the selection should be marked as text and therefore i do it the Text to Column way when i tried to copy the formatting for some reason it did not make it into text..

    The reason is that this employee code is text in all other files and therefore i have to explicitly change the format to text...

    Can you please show me how to write the code only for 2 columns and I will manage the rest..

    Thanks in advance...

    I would prefer to have the formatting for each column written seprately and then i should be able to apply the same dynamically..

    Regards
    e4excel

  2. #2
    Registered User
    Join Date
    11-03-2008
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    2,521

    Re: Macro to act differently on selected Multiple Columns

    Thanks for all the efforts and sorry for posting a late response...I was not able to post a reply as my net was veryl slow...

    This is very close and also beneficial but my idea was to get the First Row no as the one in selection which could be from an already existing filled column with lets say 11 cells from cell A1 till A11 and if I select the cells or a range of columns starting From A5 till C8 then I want the First Row to be 5 and the Last Row to be 8 though technically the first filled row no = 1 and the last row no = 11.


    Is this possible in this style of coding..

    Sub Col_1()
    
    
    Dim StartRow As Integer
    Dim LastRow As Integer
    Dim wsSP_List As Worksheet
    
    Set wsSP_List = Worksheets("SP List")
    
    With wsSP_List
    
    StartRow = ? * /Selected First Row No 
    LastRow = ?  * /Selected Last Row No 
    
    With .Range(.Cells(StartRow, 1), .Cells(LastRow, 1))    'Column Heading - Cluster Name
             
     .Formula = "=IF(ISNA(VLOOKUP($AJ2,Dump!$AJ:$AN,5,0)),$AK2,VLOOKUP($AJ2,Dump!$AJ:$AN,5,0))"
     .Value = .Value
     .Alignment = XlLeft
    
    
    End With
    
    End with
    
    End Sub

    Thanks & regards
    e4excel

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Macros to transpose from multiple columns to selected columns and maintaining cell format
    By rrajnish in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 10-09-2013, 01:45 PM
  2. Transposing data from multiple columns to selected columns
    By rrajnish in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-15-2013, 02:49 PM
  3. [SOLVED] Macro to delete columns except selected columns
    By VKR in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-07-2013, 10:01 AM
  4. Displaying multiple columns selected by a combo box
    By RollsWRangler in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-11-2012, 06:03 PM
  5. Adding sort filters to multiple selected columns
    By johnlovesbeer in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 11-22-2009, 05:12 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1