Avoid the subselect...it's not needed, it's a bad idea, and in any case it's not complex enough to get you the results you are after.
And why would you compare to "3" instead of just 3??? Is deldynb *really* a text field instead of a number field?
Try this:
Code:
SELECT bkyr AS bookyr,
Sum(original_amtfin) AS original_amtfin,
Sum(EOM_ENR) AS EOM_ENR,
Sum( IIF( deldynb=3, EOM_ENR, 0 ) ) AS whatever
FROM tblDlr_Data
GROUP BY bkyr
ORDER BY bkyr