Bullets in field not indenting

A

ant1983

I have a field in my table tblCourses. One of the fields in that table, a
memo field, is memCourseOutcomes. So the table contains the courses we have
and that field contains (as suspected :)) the course outcomes but in bullet
form.

I want to use this table's fields in a report but i want those bullets to
show as bullets (indented appropriately).

Now in the table design i see there is an option to change the field to
"Rich Text" - Is that what im suppose to do?
 
D

Duane Hookom

IMO, I would normalize the table structure so you didn't store multiple
course outcomes in a single field. Consider creating a relate table:
tblCourseOutcomes
===================
OutcomeID autonumber primary key
CourseID relates to tblCoures.CourseID
Outcome text the outcome description

You could then display this related table in a report detail section or as a
subreport in your report based on tblCourses.

Duane Hookom
MS Access 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

Top