7.56 , I want to keep 7 as it is and multiply only 56 with 40 and round then the result should be 7.220.56*40 = 22.4 not 7.22
=MOD(B1,1)*40
ThanksI think this formula may be what you are looking for...
=INT(B1)+0.4*MOD(B1,1)
Yes its working alsoAnother Option:
=DOLLARFR(B1,40
Can we skip one step, like cell A1 3.36x2.25=7.56 then formula you gave and result in B1 instead of C1.I think this formula may be what you are looking for...
=INT(B1)+0.4*MOD(B1,1)
In cell A1 no formula i put value directly 3.36Are you saying that cell A1 contains this formula...
=3.36x2.25
so that 7.56 is displayed in cell A1? If so, just change the two B1's to A1's in my formula. If not, please clarify what you mean.