check if whole num

codesmith

Active Member
Joined
Apr 23, 2008
Messages
257
Hey all - just wondering how I can check if a value is a whole number or not?

thanks in advance.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
If your number you want to test is in A1:

Code:
=IF(MOD(A1,1)>0,"Not","Whole")

Change Not and Whole to whatever you'd like to return.

There might be other methods but this is the one I could come up with :)
 
Upvote 0
hey dafan, thanks.

how would i convert this to some vba code?

Code:
Sub macro1()
MsgBox IIf(Int([a1]) = [a1], "Whole", "Not")
End Sub

Regards
Northwolves
 
Upvote 0
You can use the following instead.

Code:
MsgBox IIf([MOD(A1,1)], "Not", "Whole")

Regards
Northwolves
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,868
Members
449,054
Latest member
juliecooper255

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top