> I want to set a field in a table to put a predetermined letter or
> number in a cell.
Big warning here: spreadsheets have cells, while databases have tables, columns and
records. Spreadsheets do what they do very well, but databases do spreadsheets vry
poorly.
> Where I would usually have it autonumber a list I need to put P1,P2,P3
> etc. instead of 1,2,3.
You put it in the query:
SELECT "P" & MyNumber AS MyFormattedNumber
FROM MyTable
etc..
If the "P" is going to vary, and if it has some meaning, then you need another column
in the table; but that is a slightly longer answer.
Hope that helps
Tim F