contactcp,
If I understand your request properly you have a list of contacts with addresses in columnar format, i.e. the name, address & contact information for each contact in one column and approximately 4 rows, then you have another one following below it, then another and another and so on. The transpose function will not work for you in this situation.
I suggest that you make a copy of your worksheet and perform this on the copy to preserve your original data as a precaution.
There are a number of ways to accomplish this, but I use (and like) algebraic functions to accomplish this task relatively simply. I'll try to explain it further. In a column on the far right of your data place the numbers 1,2,3,4, etc. for each line of the address. The first line of each contact should begin again with the number 1. If your items are uniformly distributed this will be very easy as you can copy the pattern very quickly. Also the later formulas are much simpler. If you like this procedure, I suggest you go through your entire data set and uniformly distribute all of your contacts first before proceeding.
Then use the following formulas (assuming that your data is in column A with 4 lines of information for each contact):
The numbers 1 thru 4 are repeated throughout column B. (ie.B1=1, B2=2, B3=3, B4=4, in B5 place the formula =B1 then copy this formula down the entire B column. Highlight the numbers in column B and go to Edit, Copy, Edit, Paste Special Values to eliminate the formulas.
in cell C1 place the following formula: =IF(B1=1,A2,""

in cell D1 place the following formula: =IF(B1=1,A3,""

in cell E1 place the following formula: =IF(B1=1,A4,""
Then highlight the cells C1 thru E1 and use the fill handle to copy the formulas down these three columns entirely. This will place your addresses across the first row of the contact information only. Now with the items still highlighted go to Edit, Copy, Edit, Paste special values to get rid of the formulas.
Highlight the entire data set and sort it on column B in ascending order. Delete all the rows that contain the numbers 2 thru 4 in column B. Then delete column B. Your resulting items will be your addresses effectively "transposed" as you desire.
Hope this helps.