+ Reply to Thread
Results 1 to 3 of 3

Add more data to existing cell

Hybrid View

  1. #1
    Registered User
    Join Date
    03-24-2010
    Location
    Croatia
    MS-Off Ver
    Excel 2007
    Posts
    50

    Add more data to existing cell

    Hi all,

    I have sheet 1 and sheet 2, using a trigger button I'm trying to add cell data from 1st sheet cell to 2nd sheet cell and I'm using this formula:

    Sheets("sheet2").Range("A1") = Sheets("sheet1").Range("A1")
    what do I need to change in code to remain the data from A1 cell in sheet2 and add data from A1 cell from sheet2

    example

    sheet1 A1 = google
    sheet2 A1 = yahoo

    result=
    sheet2 A1 = google yahoo

    thank you

  2. #2
    Forum Expert
    Join Date
    08-28-2014
    Location
    Texas, USA
    MS-Off Ver
    2016
    Posts
    1,796

    Re: Add more data to existing cell

    With Sheets("Sheet2").Range("A1")
    .Value = .Value & " " & Sheets("Sheet1").Range("A1").Value
    End With
    I'm interested in starting a career working with VBA, if anyone knows of any opportunities!

  3. #3
    Forum Contributor
    Join Date
    01-05-2017
    Location
    New York
    MS-Off Ver
    Office 2016
    Posts
    206

    Re: Add more data to existing cell

    --------------------------

    Deleted

+ 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. Excel Userform: Update cell with new data without overwriting existing data
    By egrospe17 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 05-13-2016, 02:16 PM
  2. Add range of data to existing Access table and delete if already existing
    By rousseauassociates in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-26-2016, 11:11 AM
  3. Replies: 1
    Last Post: 05-29-2014, 11:02 AM
  4. Replies: 11
    Last Post: 11-04-2013, 04:32 PM
  5. Replies: 3
    Last Post: 10-14-2013, 03:06 PM
  6. Replies: 1
    Last Post: 01-29-2010, 12:52 AM
  7. Replies: 1
    Last Post: 08-15-2009, 05:52 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