I have a a column in design view called RU. My function name is test. I have 3 row paramaters. When I pass them and breakpoint the function, it seems it never enters it. Yet the column output becomes #error.
ru : test([table1].[column1],[table1].[column2],[table1].[column3]) <--all strings
module1:
Option Compare Database
function test(a As string, b as string, c as string) as string
dim send as string
send = "test"
test=send
End function
shouldn’t you have “public” on the front of Function if it is in a separate module