Is there any way to multiply two fields a number and a currency and have the answer be rounded up to the nearest 5. For example $41.50 would be $45.00 and $46.00 would become $50.00, etc. Any ideas on how to accomplish this would be appreciated.
Think that you need to be a bit inventive here. If you divide the answer by 5 using \ operator you get div or mod can never remember whhich but basically you get integer value so if you divide 41.5 \5 you get 8. Now if you know that you want answer to nearest 5 then to the original calculation you need to add 5 so that you always round up
So original calculation then add 5
Divide this answer by 5 using special operator and multiply result by 5