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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top