how to sort output of transferspreadsheet function?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jorge Abiad

    how to sort output of transferspreadsheet function?

    I am transferring data from access table to excel 2003 as a pivot table.how do i sort the output using vba access when the columns to be sorted are date columns?
  • nico5038
    Recognized Expert Specialist
    • Nov 2006
    • 3080

    #2
    Go into SQL textmode and add an Order By clause.
    You can use the columns sequence number, Access wil "know" when it's a date.

    Like: select * from tblX Order By 2, 3

    Nic;o)

    Comment

    Working...