the Median() function is designed to find the median of all the values in a single field or formula. You are trying to find the median of 3 separate fields. Therefore, you will most likely need to either: 1) write a formula that creates an array out of your 3 fields, then a second formula finding the median() value of that formula; or 2) manually write a formula to handle the median calculation. The second option is more complicated, and involves determining whether your result set is even or odd; then sorting the results by absolute value, then locating/calculating the median of those values.
I'd recommend searching for how to set up an array, then taking the medain of the array formula.