+ Reply to Thread
Results 1 to 6 of 6

Thread: Lists, 2003-->2000

  1. #1
    EDSTAFF
    Guest

    Lists, 2003-->2000

    I have Excel 2003 at home, Excel 2000 at work. I created drop-down sorting
    buttons at home using Data/List/Create List with range C11:J52. Text in
    C11:J11 converted to headers for sorting. I was a bit dismayed when I opened
    file at work and sorting buttons/headers did not maintain sorting function.
    Is there a way to create Lists in 2003 and open in 2000 and maintaing the
    sorting function created using Data/List? If not, how can I create the same
    funciton in 2000 at the office without using VBS (VBS not allowed at work per
    company policy)? Is there a control in 2000 that I am missing for this
    function?

    TIA

  2. #2
    Roger Govier
    Guest

    Re: Lists, 2003-->2000

    Hi

    I suspect that you have something like the following as your Sort Macro in 2003

    Sub Macro2003()

    Range("A1:A5").Select
    Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _
    OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
    DataOption1:=xlSortNormal
    End Sub

    The last part, following the last comma, is not understood by XL2000 and
    omitting it from 2003 does not prevent it from working.

    Sub Macro2000()

    Range("A1:A5").Select
    Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _
    OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
    End Sub


    Regards

    Roger Govier


    EDSTAFF wrote:
    > I have Excel 2003 at home, Excel 2000 at work. I created drop-down sorting
    > buttons at home using Data/List/Create List with range C11:J52. Text in
    > C11:J11 converted to headers for sorting. I was a bit dismayed when I opened
    > file at work and sorting buttons/headers did not maintain sorting function.
    > Is there a way to create Lists in 2003 and open in 2000 and maintaing the
    > sorting function created using Data/List? If not, how can I create the same
    > funciton in 2000 at the office without using VBS (VBS not allowed at work per
    > company policy)? Is there a control in 2000 that I am missing for this
    > function?
    >
    > TIA


  3. #3
    Tom Ogilvy
    Guest

    Re: Lists, 2003-->2000

    The list functionality was introduced in xl2003, so it can not be reproduced
    in earlier verions.

    You will have to apply autofilters individually and sort individually
    without the aid of special dropdowns.

    --
    Rgards,
    Tom Ogilvy


    "EDSTAFF" <EDSTAFF@discussions.microsoft.com> wrote in message
    news:8277D01F-06D3-4791-896C-B31CA3C1D3FB@microsoft.com...
    > I have Excel 2003 at home, Excel 2000 at work. I created drop-down sorting
    > buttons at home using Data/List/Create List with range C11:J52. Text in
    > C11:J11 converted to headers for sorting. I was a bit dismayed when I

    opened
    > file at work and sorting buttons/headers did not maintain sorting

    function.
    > Is there a way to create Lists in 2003 and open in 2000 and maintaing the
    > sorting function created using Data/List? If not, how can I create the

    same
    > funciton in 2000 at the office without using VBS (VBS not allowed at work

    per
    > company policy)? Is there a control in 2000 that I am missing for this
    > function?
    >
    > TIA




  4. #4
    exceluserforeman
    Guest

    Re: Lists, 2003-->2000

    She (he) said No VBS allowed at work!

    "Roger Govier" wrote:

    > Hi
    >
    > I suspect that you have something like the following as your Sort Macro in 2003
    >
    > Sub Macro2003()
    >
    > Range("A1:A5").Select
    > Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _
    > OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
    > DataOption1:=xlSortNormal
    > End Sub
    >
    > The last part, following the last comma, is not understood by XL2000 and
    > omitting it from 2003 does not prevent it from working.
    >
    > Sub Macro2000()
    >
    > Range("A1:A5").Select
    > Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _
    > OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
    > End Sub
    >
    >
    > Regards
    >
    > Roger Govier
    >
    >
    > EDSTAFF wrote:
    > > I have Excel 2003 at home, Excel 2000 at work. I created drop-down sorting
    > > buttons at home using Data/List/Create List with range C11:J52. Text in
    > > C11:J11 converted to headers for sorting. I was a bit dismayed when I opened
    > > file at work and sorting buttons/headers did not maintain sorting function.
    > > Is there a way to create Lists in 2003 and open in 2000 and maintaing the
    > > sorting function created using Data/List? If not, how can I create the same
    > > funciton in 2000 at the office without using VBS (VBS not allowed at work per
    > > company policy)? Is there a control in 2000 that I am missing for this
    > > function?
    > >
    > > TIA

    >


  5. #5
    Roger Govier
    Guest

    Re: Lists, 2003-->2000

    True, but I think I completely misunderstood the problem.
    I would think that Tom got it spot on.

    Regards

    Roger Govier


    exceluserforeman wrote:
    > She (he) said No VBS allowed at work!
    >
    > "Roger Govier" wrote:
    >
    >
    >>Hi
    >>
    >>I suspect that you have something like the following as your Sort Macro in 2003
    >>
    >>Sub Macro2003()
    >>
    >>Range("A1:A5").Select
    >>Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _
    >> OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
    >>DataOption1:=xlSortNormal
    >>End Sub
    >>
    >>The last part, following the last comma, is not understood by XL2000 and
    >>omitting it from 2003 does not prevent it from working.
    >>
    >>Sub Macro2000()
    >>
    >>Range("A1:A5").Select
    >>Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _
    >> OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
    >>End Sub
    >>
    >>
    >>Regards
    >>
    >>Roger Govier
    >>
    >>
    >>EDSTAFF wrote:
    >>
    >>>I have Excel 2003 at home, Excel 2000 at work. I created drop-down sorting
    >>>buttons at home using Data/List/Create List with range C11:J52. Text in
    >>>C11:J11 converted to headers for sorting. I was a bit dismayed when I opened
    >>>file at work and sorting buttons/headers did not maintain sorting function.
    >>>Is there a way to create Lists in 2003 and open in 2000 and maintaing the
    >>>sorting function created using Data/List? If not, how can I create the same
    >>>funciton in 2000 at the office without using VBS (VBS not allowed at work per
    >>>company policy)? Is there a control in 2000 that I am missing for this
    >>>function?
    >>>
    >>>TIA

    >>


  6. #6
    Roger Govier
    Guest

    Re: Lists, 2003-->2000

    True, but I think I completely misunderstood the problem.
    I would think that Tom got it spot on.

    Regards

    Roger Govier


    exceluserforeman wrote:
    > She (he) said No VBS allowed at work!
    >
    > "Roger Govier" wrote:
    >
    >
    >>Hi
    >>
    >>I suspect that you have something like the following as your Sort Macro in 2003
    >>
    >>Sub Macro2003()
    >>
    >>Range("A1:A5").Select
    >>Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _
    >> OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
    >>DataOption1:=xlSortNormal
    >>End Sub
    >>
    >>The last part, following the last comma, is not understood by XL2000 and
    >>omitting it from 2003 does not prevent it from working.
    >>
    >>Sub Macro2000()
    >>
    >>Range("A1:A5").Select
    >>Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _
    >> OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
    >>End Sub
    >>
    >>
    >>Regards
    >>
    >>Roger Govier
    >>
    >>
    >>EDSTAFF wrote:
    >>
    >>>I have Excel 2003 at home, Excel 2000 at work. I created drop-down sorting
    >>>buttons at home using Data/List/Create List with range C11:J52. Text in
    >>>C11:J11 converted to headers for sorting. I was a bit dismayed when I opened
    >>>file at work and sorting buttons/headers did not maintain sorting function.
    >>>Is there a way to create Lists in 2003 and open in 2000 and maintaing the
    >>>sorting function created using Data/List? If not, how can I create the same
    >>>funciton in 2000 at the office without using VBS (VBS not allowed at work per
    >>>company policy)? Is there a control in 2000 that I am missing for this
    >>>function?
    >>>
    >>>TIA

    >>


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.2.0