J
JohnLute
Materials: Concatenate("SELECT Material
FROM tblPKPKMSsMaterials
WHERE txtProfileID =""" & [txtProfileID] & """ ORDER BY
Material")
How can I squeeze [MaterialComments] into this? For example, a value for
[Material] might be "Other (Specify)" which results in a value in
[MaterialComments]. Also, any other [Material] may have a [MaterialComments]
therefore I need to concatenate[MaterialComments] into this so that it
returns the following:
Material | MaterialComments
LLDPE |
Paper | Groundwood
Other (Specify) | Misc. Recycled
as:
LLDPE, Paper: Groundwood, Other (Specify): Misc. Recycled
I figured throwing in the ":" would help clarify things.
Is this possible? I can't see how to fiddle this in.
Your help is greatly appreciated. Thanks!
FROM tblPKPKMSsMaterials
WHERE txtProfileID =""" & [txtProfileID] & """ ORDER BY
Material")
How can I squeeze [MaterialComments] into this? For example, a value for
[Material] might be "Other (Specify)" which results in a value in
[MaterialComments]. Also, any other [Material] may have a [MaterialComments]
therefore I need to concatenate[MaterialComments] into this so that it
returns the following:
Material | MaterialComments
LLDPE |
Paper | Groundwood
Other (Specify) | Misc. Recycled
as:
LLDPE, Paper: Groundwood, Other (Specify): Misc. Recycled
I figured throwing in the ":" would help clarify things.
Is this possible? I can't see how to fiddle this in.
Your help is greatly appreciated. Thanks!