Forum Discussion
José Angeles
Sep 26, 2017Copper Contributor
Problem with numbers division
Hi, this should be a very easy one, but I've not been able to solve it. If I type a numbers division, like say "=3/4", Excel will automatically replace that simple formula with its result, "0.75"...
José Angeles
Sep 26, 2017Copper Contributor
Yes, in the formula bar the =3/4 is replaced with the result 0.75, therfore the cell also displays 0.75.
I have Office 365 (therefore, the latest version of Excel, i.e. 2016 in this case), PC version (running on Windows 10), and I do not press F9.
There is not such effect with additions, substractions or multiplications, only with divisions.
Thank you, Sergei.
SergeiBaklan
Sep 27, 2017Diamond Contributor
Jose, to clarify - that's only with =3/4 or with any division, let say =10.741/3.14?
- José AngelesSep 28, 2017Copper ContributorIt seems to happen with any division.
- SergeiBaklanSep 28, 2017Diamond Contributor
Jose,
I was not able to reproduce that if only not to apply the macro like
Sub Tst() Dim cell As Range For Each cell In ActiveSheet.UsedRange.SpecialCells(xlFormulas) If InStr(cell.Formula, "/") Then cell.Formula = cell.Value End If Next End Sub
but you have that on empty workbook... Also din't see such bug was mentioned.
Perhaps it's worth to repair the Office if helps.