Manual calculation of the median from a series of grades

JC21

New Member
Joined
Sep 19, 2024
Messages
5
Office Version
  1. 365
Platform
  1. Windows
I have an Excel spreadsheet with students who received a certain grade on an assessment. They are listed in alphabetical order, as follows:

series_grades.jpg

I would like to perform the following statistical dispersion operations: median, Q1, and Q3 on this series of grades WITHOUT using Excel's built-in functions. This first requires that the data series be sorted in ascending order. However, I want the data series to remain in its original order, and only have the three values corresponding to: the median, Q1, and Q3 appear in three cells next to my table. How can I perform such operations on my original table while keeping it unchanged? Should I create a sort of "temporary" table where the data is sorted in ascending order and then perform the operations? Is there a formula in Excel to do this?

Thank you for your help
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
I'm confused. The Median and Quartile worksheet functions do not require the data to be sorted.
 
Upvote 0
"Oh really? How can you calculate the median of a series of values 'manually' without sorting these values in ascending order?"
 
Upvote 0
I said i didn't want to use "built-in" fonctions from Excel...
 
Upvote 0
If you are using Excel there is no reason why you wouldn't use all the available functions.
 
Upvote 0
Reason or not I don't want to use the Excel built-in functions, so is there a way to do what I want without using them ? That's all I want to know
 
Upvote 0
You need to specify which functions are "allowed" and which are "not allowed".
 
Upvote 0
if you are allowed to write your own EXCEL function here is a UDF that will calculate the MEDIAN: ( without any sorting!!)
VBA Code:
Function mymedian(Myrng As Range) As Variant
inarr = Myrng
ub = UBound(inarr, 1)
lb = LBound(inarr, 1)

If ub Mod 2 = o Then
 For i = 1 To ub
   temp1 = inarr(i, 1)
   lowcnt = 0
   hicnt = 0
  For j = 1 To ub
    If j <> i Then
     If inarr(j, 1) > temp1 Then
      hicnt = hicnt + 1
     End If
     If inarr(j, 1) < temp1 Then
      lowcnt = lowcnt + 1
     End If
    End If
  Next j
  If (lowcnt - hicnt) = 1 Then
     botv = inarr(i, 1)
  End If
  If (lowcnt - hicnt) = -1 Then
     topv = inarr(i, 1)
  End If
 Next i
  mymedian = (botv + topv) / 2
Else
 
 For i = 1 To ub
   temp1 = inarr(i, 1)
   lowcnt = 0
   hicnt = 0
  For j = 1 To ub
    If j <> i Then
     If inarr(j, 1) > temp1 Then
      hicnt = hicnt + 1
     End If
     If inarr(j, 1) < temp1 Then
      lowcnt = lowcnt + 1
     End If
    End If
  Next j
  If lowcnt = hicnt Then
   mymedian = temp1
   Exit For
  End If
 Next i
End If


End Function
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top