I am programming a application in VB 6 (Sudoku Solver) and cannot seem to find a VB function like the MOD() function in Excel. I have bee able to create a work around using INT((Col / 3 - .001+INT(x / 3)) * 3) instead of MOD(x,3), but is there a VB function that does this that I have not been able to find?