Is there a way to get the mod function to be something besides an integer? I'm trying to identify dollar amounts that end in regular values, but I get 0 for both mod(200, 100) and mod(200.91, 100). I realize I could always just multiply both by 100 (ie. mod(20091, 10000) would not equal 0), but that seems an awfully cumbersome way to go about it. Am I missing something?