Nov 14, 2005 #1 VBAguy22 IS-IT--Management Aug 5, 2003 180 CA Hi Is there a function I can use to find the numeric remainder of a division? Something that corresponds to mod() in java. Say I divide 11 by 3: I want to get 2 11 - 9 = 2
Hi Is there a function I can use to find the numeric remainder of a division? Something that corresponds to mod() in java. Say I divide 11 by 3: I want to get 2 11 - 9 = 2
Nov 14, 2005 1 #2 Remou Technical User Sep 30, 2002 13,030 BE Just what you said: 11 mod 3 Upvote 0 Downvote