The following SQL stmnt gives me the result 419.01 as the value for PymtAmt. I want to remove the decimal point with some kind of a string function with result 41901. I have tried "REPLACE" and "STUFF" and get back "Undefined Function". What function, if any, can I use in the below stmnt?? Where oh where do you find a list of the functions that are applicable to JET SQL??
SELECT ROUND(PaymtAmt,2) AS PymtAmt
FROM(SELECT SUM(IIf(ISNULL([QTRTTL]),0,[QTRTTL])+IIf(ISNULL([QTRTTLSTARTUP]),0,[QTRTTLSTARTUP])-IIf(ISNULL([QTRTTLDEPOSITS]),0,[QTRTTLDEPOSITS])) AS PaymtAmt
FROM qryQTRTTL, qryQTRTTLSTARTUP, qryQTRTTLDEPOSITS)
TNN, Tom
TOM
SELECT ROUND(PaymtAmt,2) AS PymtAmt
FROM(SELECT SUM(IIf(ISNULL([QTRTTL]),0,[QTRTTL])+IIf(ISNULL([QTRTTLSTARTUP]),0,[QTRTTLSTARTUP])-IIf(ISNULL([QTRTTLDEPOSITS]),0,[QTRTTLDEPOSITS])) AS PaymtAmt
FROM qryQTRTTL, qryQTRTTLSTARTUP, qryQTRTTLDEPOSITS)
TNN, Tom
TOM