Consulting

Results 1 to 8 of 8

Thread: Find a last row and insert a values

  1. #1

    Find a last row and insert a values

    Hi all ,

    I have one quick question is there a way we can find a last empty cell in the column and insert a value from there for example .

    Lets say i have 50 names and i wanted to be inserted at the last empty cell in a column assume in Coumn " A" A15 is empty and from A15 i wanted fifty names to be inserted next time A20 from there i wanted names to be inserted .

    is there a way we can do that ?.

    thank !

  2. #2
    VBAX Expert
    Joined
    Sep 2016
    Posts
    788
    Location
    Where is the list of 50 names?

  3. #3
    Hi Mana, thanks for your reply .

    and the list of names would be in the same work book in next sheet and Please find below list of names it has duplicates though but its my ideal list of.

    Rekha Reddy
    Supriya Patel
    Lubna Minhaj
    Tandon, Ritesh
    Tandon, Ritesh
    Tandon, Ritesh
    Tandon, Ritesh
    Tandon, Ritesh
    Ayesha Bose
    Christine Margret
    Ayesha Bose
    Tandon, Ritesh
    Ayesha Bose
    Ayesha Bose
    Ayesha Bose
    Y Lalitha
    Tandon, Ritesh
    Tandon, Ritesh
    Tandon, Ritesh
    Tandon, Ritesh
    Ayesha Bose
    Tandon, Ritesh
    Tandon, Ritesh
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha
    Y Lalitha

  4. #4
    VBAX Expert
    Joined
    Sep 2016
    Posts
    788
    Location
    Sorry, your english is difficult for me.
    I can't guess your expected result.
    Please upload your workbook.

  5. #5
    Hi Friend , i am sorry my be i was not clear with what i was asking anyways here is the attached file , what i wanted is i wanted 50 names from sheet "My fifty names". to be copied and pasted in "summary" sheet in column "A" from last empty cell .

    did i make it clear now ?.

    thanks
    Attached Files Attached Files

  6. #6
    Hey mana, any luck with my request does my request make sense , i know its a simple one though , but it will help in doing a frequent job automated !

    let me know if you need anything else ?.

  7. #7
    Is this what you mean?
    Sub Maybe()
        Sheets("My fifty names").Range("A1:A" & Cells(Rows.Count, 1).End(xlUp).Row).Copy Sheets("summary").Cells(Rows.Count, 1).End(xlUp).Offset(1)
    End Sub
    Last edited by jolivanes; 01-06-2018 at 04:06 PM. Reason: Code tags

  8. #8
    No answer. Does that mean "Yes", "No" or "Maybe"

Posting Permissions

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