How to test function in Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all
Is there a similar "Immediate Window" outside the VBE in Access to test
function. The functions in Access are the same in VBE

CLara
 
You can use functions in control sources or queries. Consider creating an
unbound form with a text box and Control Source using your function:
=YourFunction()
 
Back
Top