Hi John
Following on from Larry's post - if you are sur you want this, I would not
store it in a table - use it on a form to help users. You can use this
SELECT "+44 " & "(0) " & RTrim([TableName]![PhoneNumber]) AS TelNo
FROM TableName;
Or just put this into a calculated field
TelNo: "+44 " & "(0) " & RTrim([TableName]![PhoneNumber])
But, as Larry mentioned it will not work ??. In the UK most people just
give the last section of the number (without the code) so the above will give
you the wrong phone number. Also bear in mind that this can not be used for
autodialers as there are spaces in the resulted calculated field.
But I hope this points you in the right direction.