Nothing native in Access.
You could write a function to do some reformatting.
You could use this to do some slight modification to layout. But it isn't part of Access.
It will convert this
Code:
SELECT Properties.[Property #], Properties.[Property Type],
Properties.City, Properties.State, Properties.Bedrooms,
Properties.Bathrooms, Properties.Condition, Properties.[Market Value]
FROM Properties
WHERE (((Properties.State)="VA")) OR (((Properties.State)="MD"));
to this
Code:
SELECT Properties.[Property #]
,Properties.[Property Type]
,Properties.City
,Properties.STATE
,Properties.Bedrooms
,Properties.Bathrooms
,Properties.Condition
,Properties.[Market Value]
FROM Properties
WHERE (((Properties.STATE) = "VA"))
OR (((Properties.STATE) = "MD"));