+ Reply to Thread
Results 1 to 4 of 4

Transpose data into cells base on criteria

Hybrid View

  1. #1
    Registered User
    Join Date
    01-08-2016
    Location
    United States
    MS-Off Ver
    2007
    Posts
    4

    Transpose data into cells base on criteria

    I have this:

    Slot Position Name Salary Projection
    1 C DeMarcus Cousins 10700 48
    2 SG James Harden 10200 49
    3 PF Terrence Jones 5900 31
    4 PG Deron Williams 5800 30
    5 PG Reggie Jackson 5100 30
    6 SG Kevin Martin 4900 30
    7 PF Amar'e Stoudemire 4400 27
    8 SF Luc Richard Mbah a Moute 3000 21
    Total 50000 266

    Need to reorganize into the following:

    PG SG SF PF C F G UTIL
    1st PG 1st SG 1st SF 1st PF 1stCenter Next Forward Next Guard Last Remaining Player

    Each one is a column. Is this even possible?

  2. #2
    Forum Expert skywriter's Avatar
    Join Date
    06-09-2014
    Location
    USA
    MS-Off Ver
    365 Version 2409
    Posts
    2,789

    Re: Transpose data into cells base on criteria

    Attach a sample workbook. Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

    View Pic

  3. #3
    Registered User
    Join Date
    01-08-2016
    Location
    United States
    MS-Off Ver
    2007
    Posts
    4

    Re: Transpose data into cells base on criteria

    Here is an idea of what I am trying to do.

    Sample Workbook.xlsx

  4. #4
    Forum Guru karedog's Avatar
    Join Date
    10-03-2014
    Location
    Indonesia
    MS-Off Ver
    2003
    Posts
    2,971

    Re: Transpose data into cells base on criteria

    Maybe :

    Sub Test()
      Dim arrSearch, arrIn, arrOut, i As Long, j As Long
      arrSearch = Array("PG", "SG", "SF", "PF", "C", "PF", "PG", "SG")
      arrIn = Sheets("Start").Range("A1").CurrentRegion.Value
      ReDim arrOut(1 To 1, 1 To UBound(arrSearch) + 1)
    
      For i = 0 To UBound(arrSearch)
          For j = 2 To (UBound(arrIn, 1) - 1)
              If arrIn(j, 2) = arrSearch(i) Then
                 arrOut(1, i + 1) = arrIn(j, 3)
                 arrIn(j, 2) = ""
                 Exit For
              End If
          Next j
      Next i
      Sheets("Finish").Range("A4").Resize(1, UBound(arrOut, 2)).Value = arrOut
    End Sub

+ 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. [SOLVED] how to have a cell copy another cells data base on other criteria
    By Dena in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-30-2014, 12:38 PM
  2. Replies: 3
    Last Post: 09-26-2014, 04:28 PM
  3. Need help for copy file from data base with criteria
    By k_2 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-18-2014, 04:22 AM
  4. [SOLVED] Alternate row color base on cells' criteria
    By alexnkc in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-22-2013, 08:17 AM
  5. Mail data base transpose issue
    By firsttobecool in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 08-09-2012, 01:45 PM
  6. Replies: 1
    Last Post: 07-03-2012, 01:18 AM
  7. Copying Data base on Criteria
    By jim2012 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-22-2012, 11:45 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