Mike,
If you are only looking for those records where the Detail_Line_Amt is an
integer ($1.00, $5.00, etc.) then you could try a WHERE clause that looks
like:
WHERE [Detail_Line_Amt] = ccur(int([Detail_Line_Amt]))
If what you want is to round down the Detail_Line_Amt to the next lower
whole number, then use:
SELECT PDetail.RECEIPT_NUM,
INT(PDetail.DETAIL_LINE_AMT) as IntLineAmt,
PDetail.DETAIL_ITEM_PRC
FROM PDetail;
HTH
Dale
--
Don''t forget to rate the post if it was helpful!
Email address is not valid.
Please reply to newsgroup only.
Mike said:
can someone help me with a way to find whole dollar amonts for
PDetail.DETAIL_LINE_AMT
SELECT PDetail.RECEIPT_NUM, PDetail.DETAIL_LINE_AMT, PDetail.DETAIL_ITEM_PRC
FROM PDetail;