Hi Guys
I'm trying to use this code snippet to use the excell median function to work out the Median value from a number of feilds in a record
[CODE]
Sub xlMedian()
Dim obj As Excel.Application
Set obj = CreateObject("Excel.Application")
MsgBox obj.Application.Median(1, 2, 5, 8, 12, 13)...