Ya know all these converting commands like CStr, CInt, CLng etc.?
Well I need to know the command that converts to decimal numbers. I tried doing something like CDec or CReal but it didn't work.
The deal is that I'm multiplying two different numbers (both from two different fields in a database). One is long integer, and the other is decimal. When I try to multiply them, I get a "Type Mismatch" error, and that error doesn't go away until I convert the decimal number to long integer, but I NEED it to be decimal. What can I do?