Home can I get row data to column data?

HockeyDiablo

Board Regular
Joined
Apr 1, 2016
Messages
182
Home can I get row data to column data? The information can only be whats listed on the top of the instance. Each instance is separated by a blank row (10,20)

I will provide 3 instances as a reference.

htwknd.png
[/IMG]
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
If each change has Customer name two rows above, you can write a conditional formula that prints either the new or previous name. Also require a number to exist in the next column instead of blank or text (if the pattern holds).
 
Last edited:
Upvote 0
HockeyDiablo,

If you're comfortable with a vba approach, you might try the following...

Code:
Sub Row2Column()
Dim LastRow As Long
Dim r As Range, d8 As Range, Customer As Range

LastRow = Cells(Rows.Count, "A").End(xlUp).Row
For Each r In Range("A4:A" & LastRow + 1)
    If Application.CountA(r.EntireRow) = 0 Then
        Set d8 = r.End(xlUp).End(xlUp)
        Set Customer = d8.Offset(0, 1)
        d8.Offset(-3, 3) = d8.Value
        Customer.Offset(-1, 2) = Customer.Value
    End If
Next r
End Sub

Cheers,

tonyyy
 
Upvote 0
I am unable to see your pic, can you paste a sample of what you have - and what you want, here please?

(have you tried the Copy/Paste Transpose function?)
 
Upvote 0
here is a URL of a screenshot

05.27.2016-15.57.40 - JamesStruss7324's library

This is after I insert 2 rows (A,B) Its where I would like to place the originating data
A and B are columns, not rows... did you mean to say you inserted two columns?

Also, so the values in Column C already exist and is the wording pattern shown consistent all the way down?

Also, it is hard to tell from your picture, but is there a dash in cells C3, C13, C23, etc.?
 
Upvote 0
I did mean rows, my apology... The position of the "-" and "work date" remain consistent, I need only the data to the right of that in each respective column.
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top