Quote Originally Posted by adamsm
I'm having a module to convert numbers into words, but my module is not working.

What may be the reason for this?

Any help on this would be kindly appreciated.

Thanks in advance.

I've attached the database for your reference.
I would urge you to adopt a better naming convention. You should never name a module the same name as any function.

I find it best to prefix all module with mod and all function name with a f

So you r module would have the name: modConvertCurrencyToEnglish

the function would have the name: fConvertCurrencyToEnglish

This way the names are unique and will not confuse Access.