Order By

J

JamesJ

How or can I sort the data on a continuous form without a select statement?
I have cmd buttons that sorts data on certain fields and I don't want the
filter (if any)
to change just sorted by a different field.

Thanks,
James
 
R

Rick Brandt

JamesJ said:
How or can I sort the data on a continuous form without a select
statement? I have cmd buttons that sorts data on certain fields and I
don't want the filter (if any)
to change just sorted by a different field.

Thanks,
James

Me.OrderBy = "FieldName"
Me.OrderByOn
 
J

JamesJ

Me.OrderBy = "Listing"
Me.OrderByOn

I keep getting 'Invalide use of property' on the Me.OrderByOn

James
 
Top