Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. caitliniag

    Calculating a median in a query

    Thanks for the reply PH. I hope I can clarify exactly what I need help with. I can code an algorithm for calculating the median: sort by award then take the middle value if there are an odd number of values or the mean of the two middle values if there are an even number of values So that...
  2. caitliniag

    Calculating a median in a query

    I am writing a statistical report for a weekly reporting database and need to include the median as well as the average in the report. The SQL for the report is: SELECT vw_a.Assessor, Count(vw_a.Award) AS CountOfAward, Avg(vw_a.Award) AS AvgOfAward, Max(vw_a.Award) AS MaxOfAward...

Part and Inventory Search

Back
Top