Forum Discussion
Startsun
Jan 17, 2024Copper Contributor
An error in the formula that chatGPT made me
=IF(A1<=10, A2*0.4, IF(AND(A1>10, A1<=50), A2*0.2, IF(AND(A1>50, A1<=200), A2*0.1, ""))) < A3, "Yes", "No") Condition for the formula: You need to determine in which range of numbers the number in ...
SergeiBaklan
Jan 17, 2024Diamond Contributor
As variant
=IF( A2*IF(A1<=10, 0.4, IF(A1<=50, 0.2, IF(A1<=200, 0.1, 0))) < A3, "Yes", "No")- StartsunJan 17, 2024Copper Contributorstill showing error too
- SergeiBaklanJan 17, 2024Diamond Contributor
In English version it works
Perhaps you shall use semicolons instead of commas. Try to open attached file and check how formula looks in your environment.
- StartsunJan 18, 2024Copper Contributor
SergeiBaklan I did everything as you said, but it still shows an error. I am attaching a photo below, in the first one with a comma, the other commas are replaced by a period and a comma. The language is Ukrainian