Forum Discussion
Erik_Rijkers
Sep 14, 2020Copper Contributor
If functions
Why can't I enter this function: =IF(D4>100000000,"Huge",IF(D4<1000000,"Small","Medium"))
SergeiBaklan
Sep 14, 2020Diamond Contributor
As variant you shall use semicolons instead of commas
=IF(D4>100000000;"Huge";IF(D4<1000000;"Small";"Medium"))
What exactly is wrong with the function?