If you want to get only the last 2 digits from the number then use not only FormatNumber() function for a conversion of a number to a string but also Right() function to get the last 2 characters from the string.
The formula should like something like this:
=Right(FormatNumber(<your number variable>,"0"),2)