Posts by Roberson • 1 point
1 post
-
0
votes3
answers3831
viewsA: Check if number is integer in Access
Use the expression below, the function val returns only the whole part of the number, then just compare the number using the function against itself: if val([valor]) = [valor] then msgbox "Inteiro"…