Search code examples
google-sheetsstatisticsdatasetquartile

Google Sheets Quartile Function Giving Error


In Google sheets I write the formula =QUARTILE(G7:G27, 1) to give the lower quartile between G7 and G27 but it gives me #ERROR!

Here is a print screen that shows my problem.

enter image description here


Solution

  • use ; as fx argument separator:

    =QUARTILE(G7:G27; 1) 
    

    see (not): https://stackoverflow.com/questions/73767719/locale-differences-in-google-sheets-documentation-missing-pages

    enter image description here