Access 2002 Table format question

  • Thread starter Thread starter Chas
  • Start date Start date
C

Chas

How can I enter data into a cell and select to have the data either fixed to
the left most point of the cell, the center of the cell, or the right.
 
if you're talking about entering data directly into a field in a table
("cell" is an Excel term, not Access), AFAIK you can't control column
alignment. by creating a form to enter your data, which is the standard
method of data entry, you can control many formatting properties, including
"left/center/right alignment".

hth
 
How can I enter data into a cell and select to have the data either fixed to
the left most point of the cell, the center of the cell, or the right.

An Access Table *is not a spreadsheet*. They are VERY DIFFERENT.

One of many ways in which they are different is that Tables are
designed for data storage, *not* for data display or presentation. In
fact in a finished application, users should never even *see* tables.

If you want to control the appearance of data onscreen, use a Form
with textboxes (or other controls); a Textbox has a rich range of
format properties including left, center or right justification. If
you want to control how the information is printed, use a Report -
which also lets you do this. Use table datasheets only for design and
debugging.

John W. Vinson[MVP]
 

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