A family of Microsoft relational database management systems designed for ease of use.
I need to be able to group on "large", "medium" or "small" regardless of what other words are used in the packaging name.
Hi CoteJ,
One way you could do is to pick up the first word with:
Split(packaging_name," ")(0)
The packaging_name is split using the space as separator, and in this split_array you take the first element.
However, I would work in a different way. In a Packaging table I would use a separate field with the "size" of the packaging, to prevent all kind of mistypes.
Imb.