Macro to Tranpose Data

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,585
Office Version
  1. 2021
Platform
  1. Windows
I have data in Col F1 to M10 (max) that contains Data


I would like a macro or formula to transpose this data in Cell F15 Onwards

See Sample data below that needs to be transposed


Excel 2012
FGHIJKL
1KN-63301KN-63311KN-97260KN-97305KN-97290KN-97310KN-94300
2KN-63304KN-63314KN-97300KN-97325KN-97330
3KN-63303KN-63313KN-63314KN-63315
4
Sheet1
 
Last edited:
Hi Rick

I have uploaded file on drop box- Dropbox - Extract New Account Numbers test .xlsm
Having the file in hand showed me the problem immediately. You have formulas in Columns F:M down to Row 13 whereas Rows 5:12 are displaying no data anywhere within that column range. The method I used (works good on constant values) fails for formulas displaying nothing. Here is a modified version of my macro that will work with your data setup...
Code:
[table="width: 500"]
[tr]
	[td]Sub TransposeColumnsFthruM()
  Dim R As Long, C As Long, LastRow As Long, Joined As Variant
  Range("F15:F112").Clear
  LastRow = 14
  For R = 1 To Range("F1", Columns("F").Find("*", , xlValues, , xlRows, xlPrevious)).Rows.Count
    Joined = Split(Trim(Join(Application.Index(Cells(R, "F").Resize(, 8).Value, 1, 0))))
    Cells(LastRow + 1, "F").Resize(UBound(Joined) + 1) = Application.Transpose(Joined)
    LastRow = LastRow + UBound(Joined) + 1
  Next
End Sub[/td]
[/tr]
[/table]
 
Upvote 0

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Thanks for amending the code

Have tested and it works perfectly
 
Upvote 0
Can you use something like this? This is a crazy complicated, but robust formula. I created a similar sized data sample. Depending where you put your =int, mod, row and column you can present your information in various directions. Use Cntrl+Shift+Enter. This formula is
=IFERROR(INDEX($A$1:$G$3,INT(SMALL(IF($A$1:$G$3<>"",(ROW($A$1:$G$3)-ROW($A$1)+1)*10^9+COLUMN($A$1:$G$3)-COLUMN($A$1)+1),ROWS($A$5:A5))/10^9),MOD(SMALL(IF($A$1:$G$3<>"",(ROW($A$1:$G$3)-ROW($A$1)+1)*10^9+COLUMN($A$1:$G$3)-COLUMN($A$1)+1),ROWS($A$5:A5)),10^9))," ")

<tbody>
</tbody>

abcdefg
hijkl
mnop
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p

<colgroup><col width="64" span="7" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Last edited:
Upvote 0
Thanks for the help


I cannot get it to work and also need and explanation of how it works


Excel 2012
FGHIJKL
1KN-63301KN-63311KN-97260KN-97305KN-97290KN-97310KN-94300
2KN-63304KN-63314KN-97300KN-97325KN-97330
3KN-63303KN-63313KN-63314KN-63315
4
5
6
7
8
9
10
11
12
13
14
15KN-63301
16KN-63301
17KN-63301
18KN-63301
19KN-63301
20KN-63301
21KN-63301
22KN-63301
23
24
25
26
Sheet1
Cell Formulas
RangeFormula
F15:F22{=IFERROR(INDEX($F$1:$M$12,INT(SMALL(IF($F$1:$M$12<>"",(ROW($F$1:$M$12)-ROW($F$1)+1)*10^9+COLUMN($F$1:$M$12)-COLUMN($F$1)+1),ROWS($F$1:M1))/10^9),MOD(SMALL(IF($F$1:$M$12<>"",(ROW($F$1:$M$12)-ROW($F$1)+1)*10^9+COLUMN($F$1:$M$12)-COLUMN($F$1)+1),ROWS($E$5:E5)),10^9))," ")}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
Hi Howard,
I see that your rows part of your formula are not the same. They need to be both (rows($E$5:E5)). Regarding how and why this formula works, that is above my "pay grade". You would need to get one of the Excel MVPs to help explain this to you (and me). For the time being, that is best I can do.

Mike
 
Upvote 0
Thanks Mike for you input.

I'm just intrigued how it works. Will test tomorrow and if I have a problem, then hopefully one of the Excel MVP's may be able to assist
 
Upvote 0

Forum statistics

Threads
1,221,443
Messages
6,159,907
Members
451,601
Latest member
terrynelson55

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