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, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
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
-
Name of MS Word Formatting Feature
by
John Baum
3 hours, 50 minutes ago -
InControl Failure?
by
Casey H
4 hours, 33 minutes ago -
Microsoft : Free 1 year support for Windows 10 after EOL
by
Alex5723
2 hours, 56 minutes ago -
MS-DEFCON 3: Businesses must tread carefully
by
Susan Bradley
25 minutes ago -
McLaren Health Care says data breach impacts 743,000 patients
by
Nibbled To Death By Ducks
20 hours, 28 minutes ago -
WhatsApp banned on House staffers’ devices
by
Alex5723
15 hours, 30 minutes ago -
Is your device eligible?
by
Susan Bradley
23 hours, 28 minutes ago -
Windows 11 Insider Preview build 26200.5661 released to DEV
by
joep517
1 day, 5 hours ago -
Windows 11 Insider Preview build 26120.4452 (24H2) released to BETA
by
joep517
1 day, 5 hours ago -
Hello Windows…My Problem is Windows Hello…
by
rdleib
1 day, 6 hours ago -
New Canon Printer Wants Data Sent
by
Win7and10
1 day, 7 hours ago -
I set up passkeys for my Microsoft account
by
Lance Whitney
20 hours, 44 minutes ago -
AI is for everyone
by
Peter Deegan
1 day, 6 hours ago -
Terabyte update 2025
by
Will Fastie
1 day ago -
Migrating from Windows 10 to Windows 11
by
Susan Bradley
3 hours, 43 minutes ago -
Lost sound after the upgrade to 24H2?
by
Susan Bradley
1 hour, 7 minutes ago -
How to move 10GB of data in C:\ProgramData\Package Cache ?
by
Alex5723
9 hours, 29 minutes ago -
Plugged in 24-7
by
CWBillow
1 day, 15 hours ago -
Netflix, Apple, BofA websites hijacked with fake help-desk numbers
by
Nibbled To Death By Ducks
2 days, 19 hours ago -
Have Copilot there but not taking over the screen in Word
by
CWBillow
2 days, 16 hours ago -
Windows 11 blocks Chrome 137.0.7151.68, 137.0.7151.69
by
Alex5723
4 days, 10 hours ago -
Are Macs immune?
by
Susan Bradley
1 day, 1 hour ago -
HP Envy and the Function keys
by
CWBillow
3 days, 18 hours ago -
Microsoft : Removal of unwanted drivers from Windows Update
by
Alex5723
1 day, 11 hours ago -
MacOS 26 beta 1 dropped support for Firewire 400/800
by
Alex5723
4 days, 21 hours ago -
Unable to update to version 22h2
by
04om
2 days, 6 hours ago -
Windows 11 Insider Preview Build 26100.4482 (24H2) released to Release Preview
by
joep517
5 days, 5 hours ago -
Windows 11 Insider Preview build 27881 released to Canary
by
joep517
5 days, 5 hours ago -
Very Quarrelsome Taskbar!
by
CWBillow
4 days, 15 hours ago -
Move OneNote Notebook OFF OneDrive and make it local
by
CWBillow
5 days, 18 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.