+ Reply to Thread
Results 1 to 2 of 2

Fill text or notepad with info from rows

  1. #1
    Registered User
    Join Date
    11-04-2022
    Location
    provo
    MS-Off Ver
    365
    Posts
    1

    Post Fill text or notepad with info from rows

    Capture.JPG
    hello guys good afternoon

    In my company they're doing a lot of copying and pasting and I'm trying to reduce that.

    We have 3 columns for almost 180 employees who need to have authorization or not to sell shares and there is a text where we include the the name, employee number and if they have authorization or not. To speed up I added the vlookup when you type the name, so it brings the employee number and if you have authorization or not.

    I would have to copy almost 180 times the text for each employee. Is there a way that excel, or with a macro generate this text already with the values ​​of the columns of each row?

    I posted a photo to make it clearer what I meant, if anyone has any ideas or has seen something similar I would appreciate it
    Last edited by ismelloa; 11-04-2022 at 11:18 PM.

  2. #2
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow Re: Fill text or notepad with info from rows


    Hello,

    according to your poor picture a VBA demonstration as a beginner starter :

    PHP Code: 
    Sub Demo1()
        
    With [A1].CurrentRegion.Rows
            
    For R& = 2 To .Count
                
    [H6:H8] = Application.Transpose(.Item(R))
                
    ' your other stuff here '
            
    Next
        End With
    End Sub 
    ► Do you like it ? ► So thanks to click on bottom left star icon « Add Reputation » !

+ 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. Sorting a colummns
    By Gateway1 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 05-01-2019, 11:49 PM
  2. Fill in info from web link
    By irisha in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 10-17-2015, 03:24 PM
  3. Auto fill info from one file to another
    By mona111 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-14-2014, 07:12 PM
  4. how do i fill vertical colums with info from horizontal info
    By dmccue in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-26-2014, 04:45 PM
  5. Replies: 3
    Last Post: 05-12-2014, 02:58 PM
  6. Replies: 0
    Last Post: 12-06-2012, 02:52 PM
  7. Fill several comboboxes with same info
    By peter233 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-20-2006, 07:47 AM

Tags for this Thread

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