May 12 2021 07:19 AM
Hi, I was trying to type this formula in cell: =IF($A$25= 1,SQRT(E4/3),IF($A$25=2,(22+SQRT(484-(8,4*(75-E4))))/4,2,LN(E4))) . When I press enter the window appears and it says something like: there is a problem with this formula. This is original formula:
and when I tried to change something ( like I did up there with , instead of ; ) the window that I already mentioned appears.
Please help.
May 12 2021 07:39 AM
SolutionIf you use point as decimal separator, you should use 8.4 instead of 8,4 and 4.2 instead of 4,2:
=IF($A$25= 1,SQRT(E4/3),IF($A$25=2,(22+SQRT(484-8.4*(75-E4)))/4.2,LN(E4)))
May 12 2021 07:44 AM