One last question: I'm trying to make it to where if the result is 0, then leave it blank.
You could use a custom format for the control.... From Help:
Format Property - Number and Currency Data Types
Custom Formats
Custom number formats can have one to four sections with semicolons ( ; ) as the list separator. Each section contains the format specification for a different type of number.
Section Description
First |
The format for positive numbers. |
Second |
The format for negative numbers. |
Third |
The format for zero values. |
Fourth |
The format for Null (Null: A value you can enter in a field or use in expressions or queries to indicate missing or unknown data. In Visual Basic, the Null keyword indicates a Null value. Some fields, such as primary key fields, can't contain a Null value.) values. |
For example, you could use the following custom Currency format:
$#,##0.00[Green];($#,##0.00)[Red];"Zero";"Null"
You could try:
Code:
##0.00;(##0.00)[Red];"";""
or
Code:
0.00;(0.00)[Red];"";""
-------------------------
BTW, when you post your dB for analysis, if the db is split, YOU should ensure that the FE/BE will link without problems. It takes a lot of time to try and figure out why the tables are not linking. You know the dB much better than we do - ensuring that FE/BE link and that the data is visible in forms/reports makes it easier to troubleshoot.
I'm just saying........