> I have a SQL View (query) which contains many fields, nine of which I want to
> use to populate nine different drop-down lists on an InfoPath form. I want
> each drop-down list to show unique values in alphabetical order. I would
> rather not create nine separate views (one to sort each field) as that would
> mean nine extra data connections (which slows down the InfoPath response
> time). I can get each drop-down list to be unique by employing a Filter
> Condition of not(.=../preceding::d:view-name/[ at ]field-name; but I cannot get
> each drop-down list to alphabetize independently.
>
> I hope you can help (I've enjoyed reading a lot of your other posts; even if
> you can't address this issue, you have already indirectly helped me with
> others)
>
> "S.Y.M. Wong-A-Ton" wrote:
>
> > Can you describe a bit more what your scenario is like and what you have
> > already tried doing? If you're using a database, you could create a View (in
> > SQL Server) or Query (in Access) do the sorting and then bind your drop-down
> > to this view or query instead of a table.
> > ---
> > S.Y.M. Wong-A-Ton
> >
> >
> > "GBright" wrote:
> >
> > > Help - I did the below and it did not solve the problem for me. What else can
> > > I try?
> > >
> > > GBright
> > >
> > > "KLaw" wrote:
> > >
> > > > Perfect! Exactly what i was looking for - Thanks!
> > > >
> > > > "S.Y.M. Wong-A-Ton" wrote:
> > > >
> > > > > Review this thread
> > > > >
> > > > >
http://groups.google.com/group/microsoft.public.infopath/browse_thread/thread/465cb368a5a1e56a/a5951e64f2c3fa38#a5951e64f2c3fa38 > > > > >
> > > > > and see if there are tips there that might help you. Pay particular
> > > > > attention to the post by wina.
> > > > > ---
> > > > > S.Y.M. Wong-A-Ton
> > > > >
> > > > >
> > > > > "KLaw" wrote:
> > > > >
> > > > > > I am working on a form which has a drop down box of products which are
> > > > > > filtered by manufacturer. Is there a way to change what order the list
> > > > > > appear in? Right now it seems rather random - the items do not appear in the
> > > > > > order that they are in on the reference table and they aren't alphabetical.
> > > > > > I appreciate any help that anyone can give.