Table fields

  • Thread starter Thread starter Radhika
  • Start date Start date
R

Radhika

I have a table in which one of the fields is called 'Objectives'. I want all
the objectives in the field to be ordered with numbers. For example, in forms
veiw I want the data in the field to look as follows:

Objectives 1. To...
2. To.....
3. To......

Is there any way in which I can automatically program this?

Thankyou,
Radhika
 
Rather than embedding more than one fact per field ("Objective" AND "sort
order"), consider adding another field that would hold an integer. You'd
use that added field to allow you to sort the objectives.

Use a query to come up with a sorted list of objectives.

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
Is this what you are after? It numbers each record.
SELECT Customers.CustomerID,
Customers.CompanyName,
(SELECT Count(CustomerID)
FROM Customers c
WHERE c.CustomerID <= Customers.CustomerID
) AS RowCt
FROM Customers
 

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

Similar Threads

Add Number to a Date 3
Expression in a query 1
Expression in query 3
Change subform veiw 1
Autonumber in a report 2
Subtract Dates stored as text fields 9
Avg fields in a table 1
Avg in a query 3

Back
Top