+ Reply to Thread
Results 1 to 2 of 2

find date in column A and copy, paste and transpose valuse

  1. #1
    Registered User
    Join Date
    12-12-2005
    Posts
    23

    Post find date in column A and copy, paste and transpose valuse

    Hi All,

    I found this code online, which does what I want to do but further on my excel worksheet There is column A with date. date is in this format =3/9/2012.

    I want to add to code:

    find today's date in Column A and than run below code (copy & paste)

    ---found code ---
    Sub Transpose()
    Dim a As Long
    Dim b As Long
    Dim i As Long
    a = Sheets("Sheet4").UsedRange.Rows.Count
    b = 1
    For i = 2 To a Step 437
    Sheets("Sheet4").Range("a" & i & ":a" & i + 435).Copy
    Sheets("Sheet2").Range("h2" & b).PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=False, Transpose:=True
    b = b + 1
    Next i
    End Sub

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

  2. #2
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: find date in column A and copy, paste and transpose valuse

    Try this one,but if does not work, you may need to attach a sample with a desired result.
    Please Login or Register  to view this content.

+ 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