What Jeff's assuming, I believe, is that you don't want the -/+ to be
there for specific values of [Length-TOL] (likely when it's Null). If
that's the case, try
Packet/Pouch Length: Trim([Length] & " " & [LengthUOM] & (" -/+ " +
[Length-TOL]))
or
Packet/Pouch Length: Trim([Length] & " " & [LengthUOM] &
IIf(IsNull([Length-TOL], "", " -/+ " & [Length-TOL]))
--
Doug Steele, Microsoft Access MVP
(no private e-mails, please)
Jeff Boyce said:
John
Why do you (or perhaps, "when" do you) want to leave the literal string
" -/+ " out?
Consider using the IIF() function to decide when to keep/lose the
literal...
Regards
Jeff Boyce
Microsoft Office/Access MVP
How can I modify the following so that "-/+" is trimmed out?
Thanks for your help in advance!
Packet/Pouch Length: Trim([Length] & " " & [LengthUOM] & " -/+ " &
[Length-TOL])