Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to check if a value is equally divisible by another value and not
sure how to do it Say I have 6600 in A1 and 250 in B1, what formula could I use to return the value "No" in C1 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(MOD(A1,B1)<0,"No","Yes")
-- HTH Bob Phillips (remove nothere from email address if mailing direct) "John" wrote in message ... I want to check if a value is equally divisible by another value and not sure how to do it Say I have 6600 in A1 and 250 in B1, what formula could I use to return the value "No" in C1 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Bob
"Bob Phillips" wrote in message ... =IF(MOD(A1,B1)<0,"No","Yes") -- HTH Bob Phillips (remove nothere from email address if mailing direct) "John" wrote in message ... I want to check if a value is equally divisible by another value and not sure how to do it Say I have 6600 in A1 and 250 in B1, what formula could I use to return the value "No" in C1 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try...
=IF(MOD(A1,B1)=0,"Yes","No") Hope this helps! In article , "John" wrote: I want to check if a value is equally divisible by another value and not sure how to do it Say I have 6600 in A1 and 250 in B1, what formula could I use to return the value "No" in C1 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(MOD(A1,B1)=0,"Yes","No")
-- Kind regards, Niek Otten "John" wrote in message ... I want to check if a value is equally divisible by another value and not sure how to do it Say I have 6600 in A1 and 250 in B1, what formula could I use to return the value "No" in C1 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
... Can I set Spell Check to automatically check my spelling ... | Setting up and Configuration of Excel | |||
Entry into check box dependent on other check box. | Excel Worksheet Functions | |||
Can you sort with check boxes? | Excel Discussion (Misc queries) | |||
check boxes - copy | Excel Discussion (Misc queries) | |||
How do I use a check box to accept a calculation | Excel Discussion (Misc queries) |