How to show Line Item in ascending order

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have a line item that shows in a form with all the line items in ascending
order. The data type of the line item is in text format. When I am displaying
the following line iems in the form 6000, 8000 and 10,000 the 10,000 line
item is showing up as the first one instead of the last one. I would like to
know if there is any remedy for this without chainging the data type. Thanks
 
Hi,
I have a line item that shows in a form with all the line items in ascending
order. The data type of the line item is in text format. When I am displaying
the following line iems in the form 6000, 8000 and 10,000 the 10,000 line
item is showing up as the first one instead of the last one. I would like to
know if there is any remedy for this without chainging the data type. Thanks

It should be a Number datatype.... but:

Create a query showing all of the fields needed in the form.
Add a new column:
SortThis:Val([FieldName])
Set this column's Sort to Ascending

Base your form on this query.
It will be sorted according to the numeric value of the text field.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top