Deleting Parts of a Cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a list of information in a column. All the information has the format
of having numbers and letters then a / and more data. I only want to look at
the data to the left of the /. So, I would like the data to the right of the
/ deleted, including the /. For example, I need YYY9/5 to read YYY9. Any
suggestions?
 
You can create a query to do that for you.

Select TableName.*, Left([FieldName],instr([FieldName],"/")-1) As NewField
From TableName
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top