Jan 08 2024 12:53 PM - edited Jan 08 2024 12:54 PM
Hello,
I would like to ask for help since my Excel does not recognize the formula when I type it into the cell. I don't know why, maybe it's some configuration but I can't adjust it.
When I type the formula with the help of ''function arguments'' (Fx), it works, but when I write it directly in Excel, an error appears with a problem in the formula.
Has anyone ever experienced this? Can you help me please?
Jan 08 2024 01:06 PM
This problem can happen if you use the wrong argument separator.
If you use point as decimal separator (two-and-a-half is written as 2.5), then you need to use comma as argument separator. Examples:
=SUM(A1, B2)
=IF(A1>0, "Positive", "Not positive")
If you use comma as decimal separator (two-and-a-half is written as 2,5), then you need to use semicolon as argument separator. Examples:
=SUM(A1; B2)
=IF(A1>0; "Positive"; "Not positive")
Jan 08 2024 01:20 PM
Jan 08 2024 01:38 PM - edited Jan 08 2024 01:39 PM
What is the formula that was rejected?
And what does it look like when you create it using the fx button?
Jan 08 2024 01:45 PM
Jan 08 2024 02:30 PM - edited Jan 08 2024 02:33 PM
SolutionMake sure that you use straight quotes " around text strings, not curly quotes “. Excel doesn't recognize the latter. Also, the double quote " is a single character, not two single quotes in a row.
Jan 09 2024 05:01 AM
That's right, I adjusted the ''quotes'' and it worked out great! Thank you!@HansVogelaar
Jan 08 2024 02:30 PM - edited Jan 08 2024 02:33 PM
SolutionMake sure that you use straight quotes " around text strings, not curly quotes “. Excel doesn't recognize the latter. Also, the double quote " is a single character, not two single quotes in a row.