We learn how to find the median of raw list of discrete data. The median is the middle value of the list of numbers, when there is an odd number of values, and the average of the two middle values, when the number of values is even. The method for finding it consists of re-organising the numbers in increasing order followed by locating the middle value using the (n + 1)/2 formula. This is illustrated with two detailed worked examples in which we find the median of discrete lists of data.