Hello,
I have a simple table. One field (CustomerID) in that table contains 11
characters. I've created a report that shows the various fields I need, but
I only need to show the first 5 characters from the CustomerID field. How
would I go about this?
Thank you!
Ofer - 13 Jan 2006 00:42 GMT
Try this in the field
=Left([CustomerID],5)
Or in a query
Select Left([CustomerID],5) As NewName From TableName

Signature
\\// Live Long and Prosper \\//
BS"D
> Hello,
>
[quoted text clipped - 4 lines]
>
> Thank you!