Just an observation, but rounding is really a client-side issue. In all but a few cases, it should really be handled by the client instead of the server.
Most servers will accept the:
SELECT Round(41.78 * 0.01 * 17 + 41.78, 2) AS new_price
syntax, but you still should do the rounding at the client if you can. Someday you might decide that you want the "full value", or maybe you'll need to round at a different precision than 2 for some clients... Not that I've ever had that happen, I just read about it in a book once.
-PatP