We had a problem with some test results that have been downloaded to Excel. The test was giving us temperature readings for 5 different test zones every second for a period of 2 hours (5 columns of data each second). Each of these results has been recorded in a single row in Excel instead of in 5 different columns (person that set up the test forgot to enter the instructions for that crucial “Enter” key at the end of each test reading to return to the first column in the next row). Does anyone know of a way I can have every 5 records of the results moved to 5 different columns (i.e. column A being “Zone 1” results, column B being “Zone 2” results, column C being “Zone 3” results, etc.). I don’t think a standard formula will work because I’m attempting to pull row data into columns. (I realize that some data was lost in the test due to the number of columns available in Excel, but I’d like to give them as much of the test result as possible.)
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Move Row Data to Columns (Excel 2000 SR-1)
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Move Row Data to Columns (Excel 2000 SR-1)
- This topic has 8 replies, 2 voices, and was last updated 21 years, 4 months ago.
Viewing 5 reply threadsAuthorReplies-
WSHansV
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSptebo
AskWoody LoungerFebruary 9, 2004 at 1:07 pm #781261Each reading is in a separate column. The only exception is the first reading each time and that gives me both the date/time stamp and reading but I can separate that using “Right” and “Left ” formulas.
I’ve tried to attach a sample of the test results. If it doesn’t work, here’s what my data looks like. Each of the readings is showing up in its own column.
0 0 0 0 0 134 134 134 134 134 228 228 228 228
-
WSHansV
AskWoody LoungerFebruary 9, 2004 at 2:53 pm #781279I hope that the following macro does what you want, or else can be adapted to your needs:
Sub Row2Col()
Dim lngRow As Long
Dim lngCol As Long
Dim lngIndex As Long
Dim strVal As String
Dim lngPos As Long
Dim datTime As Date‘ Clear from F1 to the end
Range(Range(“F1”), Range(“F1”).End(xlToRight)).Clear‘ Initialize some variables
lngRow = 2
lngCol = 6
strVal = Cells(2, lngCol).Value‘ Loop through cells from F2 to the end
Do While strVal “”
Cells(2, lngCol).ClearContents
If lngCol Mod 5 = 1 Then
lngRow = lngRow + 1
lngIndex = 0
lngPos = InStr(strVal, “AM”)
If lngPos = 0 Then
lngPos = InStr(strVal, “PM”)
End If
datTime = CDate(Left(strVal, lngPos + 1))
strVal = Mid(strVal, lngPos + 2)
Cells(lngRow – 1, 6).Value = datTime
Cells(lngRow – 1, 6).NumberFormat = “mm/dd/yyyy hh:mm:ss”
If strVal = “” Then Exit Do
End If
lngIndex = lngIndex + 1
Cells(lngRow, lngIndex) = CSng(strVal)
lngCol = lngCol + 1
strVal = Cells(2, lngCol).Value
Loop
End Sub -
WSHansV
AskWoody LoungerFebruary 9, 2004 at 2:53 pm #781280I hope that the following macro does what you want, or else can be adapted to your needs:
Sub Row2Col()
Dim lngRow As Long
Dim lngCol As Long
Dim lngIndex As Long
Dim strVal As String
Dim lngPos As Long
Dim datTime As Date‘ Clear from F1 to the end
Range(Range(“F1”), Range(“F1”).End(xlToRight)).Clear‘ Initialize some variables
lngRow = 2
lngCol = 6
strVal = Cells(2, lngCol).Value‘ Loop through cells from F2 to the end
Do While strVal “”
Cells(2, lngCol).ClearContents
If lngCol Mod 5 = 1 Then
lngRow = lngRow + 1
lngIndex = 0
lngPos = InStr(strVal, “AM”)
If lngPos = 0 Then
lngPos = InStr(strVal, “PM”)
End If
datTime = CDate(Left(strVal, lngPos + 1))
strVal = Mid(strVal, lngPos + 2)
Cells(lngRow – 1, 6).Value = datTime
Cells(lngRow – 1, 6).NumberFormat = “mm/dd/yyyy hh:mm:ss”
If strVal = “” Then Exit Do
End If
lngIndex = lngIndex + 1
Cells(lngRow, lngIndex) = CSng(strVal)
lngCol = lngCol + 1
strVal = Cells(2, lngCol).Value
Loop
End Sub
-
-
WSptebo
AskWoody LoungerFebruary 9, 2004 at 1:07 pm #781262Each reading is in a separate column. The only exception is the first reading each time and that gives me both the date/time stamp and reading but I can separate that using “Right” and “Left ” formulas.
I’ve tried to attach a sample of the test results. If it doesn’t work, here’s what my data looks like. Each of the readings is showing up in its own column.
0 0 0 0 0 134 134 134 134 134 228 228 228 228
-
WSptebo
AskWoody Lounger -
WSptebo
AskWoody Lounger
Viewing 5 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Turn off right-click draw
by
Charles Billow
2 hours, 50 minutes ago -
Facing Issues Like Non-Payment of Salary or Lease Registration? (Awaiting moderation)
by
siddharthsingh
2 hours, 19 minutes ago -
Introducing ChromeOS M137 to The Stable Channel
by
Alex5723
2 hours, 28 minutes ago -
Brian Wilson (The Beach Boys) R.I.P
by
Alex5723
3 hours, 40 minutes ago -
Master patch listing for June 10, 2025
by
Susan Bradley
4 hours, 5 minutes ago -
Suggestions for New All in One Printer and a Photo Printer Windows 10
by
Win7and10
10 hours, 3 minutes ago -
Purchasing New Printer. Uninstall old Printer Software First?
by
Win7and10
10 hours, 7 minutes ago -
KB5060842 Issue (Minor)
by
AC641
14 hours, 40 minutes ago -
EchoLeak : Zero Click M365 Copilot leak sensitive information
by
Alex5723
17 hours, 12 minutes ago -
24H2 may not be offered June updates
by
Susan Bradley
43 minutes ago -
Acronis : Tracking Chaos RAT’s evolution (Windows, Linux)
by
Alex5723
1 day, 5 hours ago -
June 2025 updates are out
by
Susan Bradley
5 hours, 53 minutes ago -
Mozilla shutting Deep Fake Detector
by
Alex5723
1 day, 20 hours ago -
Windows-Maintenance-Tool (.bat)
by
Alex5723
1 day, 5 hours ago -
Windows 11 Insider Preview build 26200.5641 released to DEV
by
joep517
1 day, 23 hours ago -
Windows 11 Insider Preview build 26120.4250 (24H2) released to BETA
by
joep517
1 day, 23 hours ago -
Install Office 365 Outlook classic on new Win11 machine
by
WSrcull999
1 day, 23 hours ago -
win 10 to win 11 with cpu/mb replacement
by
aquatarkus
1 day, 14 hours ago -
re-install Windows Security
by
CWBillow
2 days, 2 hours ago -
WWDC 2025 Recap: All of Apple’s NEW Features in 10 Minutes!
by
Alex5723
2 days, 6 hours ago -
macOS Tahoe 26
by
Alex5723
2 days ago -
Migrating from win10 to win11, instructions coming?
by
astro46
11 hours, 23 minutes ago -
Device Eligibility for Apple 2026 Operating Systems due this Fall
by
PKCano
1 day, 14 hours ago -
Recommended watching : Mountainhead movie
by
Alex5723
1 day, 15 hours ago -
End of support for Windows 10
by
Old enough to know better
23 hours, 3 minutes ago -
What goes on inside an LLM
by
Michael Covington
1 day, 9 hours ago -
The risk of remote access
by
Susan Bradley
5 hours, 20 minutes ago -
The cruelest month for many Office users
by
Peter Deegan
17 hours, 32 minutes ago -
Tracking protection and trade-offs in Edge
by
Mary Branscombe
1 day, 19 hours ago -
Supreme Court grants DOGE access to confidential Social Security records
by
Alex5723
3 days, 4 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.