The easiest method would be to copy and the paste into Excel where you can
paste "Transpose" a range. If you want to stay in Access, I would add an
AutoNumber "ID" field so each record will be numbered 1-200. Then create a
crosstab query with:
Field: Title:" "
Totals: Group By
Crosstab: Row Heading
Field: ColHead: "Col" & Right(" " & [ID], 3)
Totals: Group By
Crosstab: Column Heading
Field: TheValue: [Column 1]
Totals: First
Crosstab: Value

Signature
Duane Hookom
MS Access MVP
>I have one column with 200 rows and would like to convert it into 200
> columns with one row.
[quoted text clipped - 14 lines]
>
> any help is highly appreciated.