C
CornDog
I have a table with numbers like so
$10,000.27
$15,000.00
These values are used to populate a combobox
The combobox shows them as
$10,000.27
$15,000.00
Based on a users selection the value is placed into a SQL
filter criteria.
Problem is $10,000.27 works fine, but $15,000.00 drops the
decimal places. How do I maintain the $15,000.00 if the
code looks like so
strSQL = strSQL & Forms![sfrmFilter].FilterHidden1 & " = "
& Forms![sfrmFilter].Filter2 & " And "
$10,000.27
$15,000.00
These values are used to populate a combobox
The combobox shows them as
$10,000.27
$15,000.00
Based on a users selection the value is placed into a SQL
filter criteria.
Problem is $10,000.27 works fine, but $15,000.00 drops the
decimal places. How do I maintain the $15,000.00 if the
code looks like so
strSQL = strSQL & Forms![sfrmFilter].FilterHidden1 & " = "
& Forms![sfrmFilter].Filter2 & " And "