Wrapping data in Excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am working on a Data Base with multiple fields to sort and filter from. I
have really long rows (multiple columns with multiple fields). After
performing an auto filter function, I wish to wrap up these columns to make
each row appear as a wrapped piece of data with all the column entries (with
column headings) one below the other. This is basically to be able to print
this data on A4 size paper. I would really appreciate any help on this.
Thanks.
Amit Sharma
 
Hi
not quite sure but on a second sheet in A1 try the following formula:
='sheet1'!$A$1 & ": " & 'sheet1'!$A2 & CHAR(10) & 'sheet1'!$B$1 & ": " &
'sheet1'!$B2 & CHAR(10) & 'sheet1'!$C$1 & ": " & 'sheet1'!$C2 & CHAR(10)
......

format this cell with word wrap ('Format - Cells - Alignment') and copy down
 
Back
Top