Converting To Upper Case

  • Thread starter Thread starter fred
  • Start date Start date
Is there a way to convert a text column in a query to
uppercase?

Thanks

Yes; if you just want to *display* it as upper case set its Format
property to

If you want to permanently update all the values in the table to upper
case, run an Update query updating Field1 to

UCase([Field1])

(Don't forget the square brackets or you'll find that all the records
now contain FIELD1 - back up your database first!!)
 
So you mean make it appear in uppercase in the query?

Something like Ucase(fieldname)

If you want to change it in the table then you need an update query.

maybe something like

Update tablename set fieldname = ucase(fieldname) where fieldname is not null
(e-mail address removed)
 
Field: MakeUpper: UCase([MyField])


In SQL statement
SELECT UCase([MyField]) as MakeUpper
FROM TableName
 
Back
Top