Reference

  • Thread starter Thread starter Dale Brown
  • Start date Start date
Dale said:
Does anyone now which specific reference the Trim function is in?


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.
 
I have had to specifically reference the VBA library in my applications. Use VBA.Trim() instead of just Trim().
 
gold said:
I have had to specifically reference the VBA library in my applications. Use VBA.Trim() instead of just Trim().


That may help with the immediate issue of Trim, but it's
just temporily avoiding the problem of the references being
out of whack.
 
Back
Top