Hi
First and most important. MAKE A BACK UP !
If the field is actually called Product# with the # sign
use this
Code:
UPDATE SpecSheets SET SpecSheets.[Product#] = "R" & [Product#];
If the field is actually called Product# without the # sign
use this
Code:
UPDATE SpecSheets SET SpecSheets.Product = "R" & [Product];
Cut and paste the require code into the SQL of a new query.
Then click the "Run" icon on the main toolbar (It looks like an exclamation mark ! ) .
Only do this once. Each time the query is run the "R" will be added to all existing records.
Job done.