Order By

  • Thread starter Thread starter JamesJ
  • Start date Start date
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
 
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
 
Me.OrderBy = "Listing"
Me.OrderByOn

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

James
 
Back
Top