I am having a problem with my label report for my database.
I have a table called Labels. This contains the following fields:
LabelID (primary key)
CategoryID (lookup from table: Categories)
Length (text)
Price (currency)
The lookup is for the field: Category in the Categories table.
I have 2 problems:
1. The Price field is fine in table view, e.g. type in 3.30 and it displays £3.30. However, on the report it displays 3.3
2. The Category entry =Trim("Category: " & [CategoryID]) displays the number associated in the Labels table, NOT the text value assigned in the Categories table.
How do I get the currency to display correctly, e.g. always with two digits after the decimal point? Also, how do I get the text value to show in the Category field?
Many thanks in advance for any assistance.
I have a table called Labels. This contains the following fields:
LabelID (primary key)
CategoryID (lookup from table: Categories)
Length (text)
Price (currency)
The lookup is for the field: Category in the Categories table.
I have 2 problems:
1. The Price field is fine in table view, e.g. type in 3.30 and it displays £3.30. However, on the report it displays 3.3
2. The Category entry =Trim("Category: " & [CategoryID]) displays the number associated in the Labels table, NOT the text value assigned in the Categories table.
How do I get the currency to display correctly, e.g. always with two digits after the decimal point? Also, how do I get the text value to show in the Category field?
Many thanks in advance for any assistance.