+ Reply to Thread
Results 1 to 12 of 12

Copy Data from one cell to another cell

Hybrid View

  1. #1
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: Copy Data from one cell to another cell

    Okay.. use below macro code:-

    Sub DILIPandey()
    'copying data under correct month section
    k = Sheets("asset table").Range("f51").Value
    i = Application.WorksheetFunction.Text(Date, "mmmm")
    Sheets("Monthly").Select
    Range("a:e").Find(i).Offset(0, 1).Select
        If Selection.Offset(1, 0).Value = "" Then
            Selection.Offset(1, 0).Value = k
            Selection.Offset(1, -1).Value = Date
            Else
            Selection.End(xlDown).Offset(1, 0).Select
            Selection.Value = k
            Selection.Offset(0, -1).Value = Date
        End If
    End Sub

    Asset Manager.xlsm


    Regards,
    DILIPandey
    <click on below * if this helps>
    DILIPandey, Excel rMVP
    +919810929744 (India), +971528225509 (Dubai), dilipandey@gmail.com

  2. #2
    Registered User
    Join Date
    04-09-2013
    Location
    Minnesota, USA
    MS-Off Ver
    Excel 365
    Posts
    29

    Re: Copy Data from one cell to another cell

    Thank you so much for your patience and help, i greatly appreciate it. It worked perfectly.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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