I’m using Access 02 as a web database on a win2000 server.
I am using nested queries. First, qryDoItAll collects all the data and calculates some ratios using my VBA function Ratio(num,den) which embeds a check for 0 in the denominator.
Then qryPickOne selects a column from qryDoItAll, and does a few more calculations.
This all works fine on my desktop.
When try to run qryPickOne in the same database installed in my web, the Ratio function is unknown? How so?, it knows it on my desktop?
Ok, in an attempt to solve the problem, i insert some ASP code defining Ratio, and making it available in the page that access the database. Still, Ratio is unknown. What is going on here? And how do i make this work?