Forum Discussion
How do I divide by just the whole number and not the formula?
I am trying to divide 2 cells. One cell is a number I put in and the other is calculating how many biweeks there are in between (=DATEDIF(A2,B2,"d")/14) so when I divide the number I wrote in by the number that is calculated by the formula it gives me the wrong number. What am I doing wrong? If I divide D by C, E should equal $1880.46 but it is not. Cell C is the one that has the above formula.
You may wrap it by ROUND() to round, or use INT() to cut decimals or similar functions - depends on how you'd like to calculate. As example
=ROUND(DATEDIF(A2,B2,"d")/14,0)or more simple variant
=ROUND( (B2-A2)/14,0)
5 Replies
- SergeiBaklanDiamond Contributor
Since actually number of weeks returned is 18.07143
- Yayi_Chop07Copper Contributor
SergeiBaklan is there a way to just have it dive by the integer and not the number with decimals?
- SergeiBaklanDiamond Contributor
You may wrap it by ROUND() to round, or use INT() to cut decimals or similar functions - depends on how you'd like to calculate. As example
=ROUND(DATEDIF(A2,B2,"d")/14,0)or more simple variant
=ROUND( (B2-A2)/14,0)