How to test function in Access

C

clara

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
 
D

Duane Hookom

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()
 
Top