Advance Transpose Question in Open Office/Google Docs

Bigjay45

New Member
Joined
Oct 10, 2018
Messages
5
I have a sheet with values:

cat | cat description | cat.jpeg
rat | rat description | rat.jpeg
dog| dog description| dog.jpeg

How do i get it to show like this on the speed sheet:

cat
cat description
cat.jpeg
rat
rat description
rat.jpeg
dog
dog description
dog.jpeg

Thank you for your help.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Re: Advance Transpose Question

Welcome to the Board!

Are the values originally in one cell, separated by pipe symbols, or do they currently span three columns?
 
Upvote 0
Re: Advance Transpose Question

Sorry one more question I forgot to ask:
Do you want it to overwrite the current data, or put the results on a new sheet?
 
Last edited:
Upvote 0
Re: Advance Transpose Question

with PowerQuery

Column1Column2Column3Column1
catcat descriptioncat.jpegcat
ratrat descriptionrat.jpegcat description
dogdog descriptiondog.jpegcat.jpeg
rat
rat description
rat.jpeg
dog
dog description
dog.jpeg

Code:
[SIZE=1]let
    Source = Excel.CurrentWorkbook(){[Name="Table4"]}[Content],
    #"Transposed Table" = Table.ToColumns(Table.Transpose(Source)),
    #"Converted to Table" = Table.FromList(#"Transposed Table", Splitter.SplitByNothing(), null, null, ExtraValues.Error),
    #"Expanded Column1" = Table.ExpandListColumn(#"Converted to Table", "Column1")
in
    #"Expanded Column1"[/SIZE]
 
Last edited:
Upvote 0
Re: Advance Transpose Question

Sorry one more question I forgot to ask:
Do you want it to overwrite the current data, or put the results on a new sheet?


the results can show just like sandy666 posted in the thread.
 
Upvote 0
Re: Advance Transpose Question

If you really only are have three columns, assuming that your data starts in cell A1, place this formula anywhere in row 1 and copy down as far as you need:
Code:
=OFFSET($A$1,INT((ROW()-1)/3),MOD(ROW()-1,3))
 
Upvote 0
Re: Advance Transpose Question

If you really only are have three columns, assuming that your data starts in cell A1, place this formula anywhere in row 1 and copy down as far as you need:
Code:
=OFFSET($A$1,INT((ROW()-1)/3),MOD(ROW()-1,3))

thanks for the formula. I got a 508 error. Im using open office. But the formula should work even if it is open office.
 
Upvote 0
Re: Advance Transpose Question

If you really only are have three columns, assuming that your data starts in cell A1, place this formula anywhere in row 1 and copy down as far as you need:
Code:
=OFFSET($A$1,INT((ROW()-1)/3),MOD(ROW()-1,3))


thank you it worked in goolge docs
 
Upvote 0
Re: Advance Transpose Question

Im using open office
Please be sure to mention this in future questions. While there are similarities between Excel, Open Office, and Google Docs, they are NOT the same program, and there are differences. So it is important that anyone wishing to help understand exactly what environment you are trying to solve it in.

Also, I have moved the question to the "General Excel Discussion & Other Questions" forum. That is the forum that you want to post any questions that are not truly Excel.
 
Upvote 0

Forum statistics

Threads
1,215,006
Messages
6,122,666
Members
449,091
Latest member
peppernaut

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