M Marshall Barton May 25, 2004 #2 Dale said: Does anyone now which specific reference the Trim function is in? Click to expand... It's in the VBA library. If you're getting an unknown function error when you use it, it's because some other reference is missing or otherwise unresolved.
Dale said: Does anyone now which specific reference the Trim function is in? Click to expand... It's in the VBA library. If you're getting an unknown function error when you use it, it's because some other reference is missing or otherwise unresolved.
G Guest May 25, 2004 #3 I have had to specifically reference the VBA library in my applications. Use VBA.Trim() instead of just Trim().
I have had to specifically reference the VBA library in my applications. Use VBA.Trim() instead of just Trim().
M Marshall Barton May 25, 2004 #4 gold said: I have had to specifically reference the VBA library in my applications. Use VBA.Trim() instead of just Trim(). Click to expand... That may help with the immediate issue of Trim, but it's just temporily avoiding the problem of the references being out of whack.
gold said: I have had to specifically reference the VBA library in my applications. Use VBA.Trim() instead of just Trim(). Click to expand... That may help with the immediate issue of Trim, but it's just temporily avoiding the problem of the references being out of whack.