How to Calculate Quartiles
The process starts with sorting your data from smallest to largest. That part is non-negotiable. Quartiles only make sense once the values are in order, because you're essentially cutting the sorted list into four equal chunks.
Once sorted, you find the median (Q2) first, since it splits the dataset in half. Then you find the median of the lower half to get Q1, and the median of the upper half to get Q3. Whether or not you include the median value itself when splitting depends on which calculation method you use, and there are a few of them floating around.
For small datasets, you can do this by hand pretty quickly. For anything with dozens of values, a calculator saves a lot of time and eliminates the chance of a sorting mistake throwing everything off.