Forum Discussion

Yayi_Chop07's avatar
Yayi_Chop07
Copper Contributor
Sep 11, 2020
Solved

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.

  • Yayi_Chop07 

    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

      • SergeiBaklan's avatar
        SergeiBaklan
        Diamond Contributor

        Yayi_Chop07 

        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)