Is there a way to form an IF statement that checks whether two cells are divisible in a general term.
Example: if(X is divisible by Z, then True,False) or if 1000 is divisible by 100 then, T,F.
Is there a way to form an IF statement that checks whether two cells are divisible in a general term.
Example: if(X is divisible by Z, then True,False) or if 1000 is divisible by 100 then, T,F.
Something like this perhaps?
=LEFT(INT(A1/B1) = A1/B1)
Try this :
=IF((A1/B1)=ROUND(A1/B1,0),TRUE,FALSE)
Erik
THX,
That helps.
Or
ChemistB![]()
Please Login or Register to view this content.
thanks. I acheived the goal and got a good result.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks