Solved Is it possible to find and display the max value between a series of fields? (1 Viewer)

Local time
Today, 03:14
Joined
Apr 22, 2022
Messages
17
Hi all!

I have a table with ~200 records and I need to compare 11 different fields to find which field has the largest value. Here's an example table:

State NameValue 1Value 2Value 3Value 4Value 5Value 6Value 7Value 8Value 9
California20.2294.274.075.933.3367.460.592.114.6
Florida81.148.672.157.552.479.912.716.836.3

The resulting table would look like this:

State NameMax ValueValue Name
California94.2Value 2
Florida81.1Value 1

I'm struggling to think of a good way to do this. I would be able to do a simple comparison if there were only 3 or so columns, but with 11 I'm feeling a bit overwhelmed. Any ideas would be greatly appreciated. Thank you in advance!
 

Gasman

Enthusiastic Amateur
Local time
Today, 12:14
Joined
Sep 21, 2011
Messages
14,234
It is difficult, as your structure is all wrong.
If the structure was correct, it would be very simple.
Edit: You might be able to use these functions, but still need to pass 11 fields?
 

jdraw

Super Moderator
Staff member
Local time
Today, 07:14
Joined
Jan 23, 2006
Messages
15,379
What do the Value 1 ... Value 11 represent?
 

CJ_London

Super Moderator
Staff member
Local time
Today, 12:14
Joined
Feb 19, 2013
Messages
16,607
or create a union query (called unionquery) to normalise the data

Code:
SELECT StateName, "Value1" AS vName, Value1 as V FROM myTable
UNION SELECT StateName, "Value2" AS vName, Value2 as V FROM myTable
UNION SELECT StateName, "Value3" AS vName, Value3 as V FROM myTable
etc

then a query (qry1) to find the max for each state

Code:
SELECT statename, max(V) as maxValue
FROM unionQuery
GROUP BY statename


finally to get the 'name' of the field/column

Code:
SELECT unionquery.statename, qry1.maxvalue, unionquery.vName
FROM unionquery INNER JOIN qry1 ON unionquery.statename=qry1.statename AND unionquery.V=qry1.maxValue

this all assumes there cannot be two max values for any state - your example doesn't show them and you haven't said what you would want to do in the eventuality that they could occur
 
Local time
Today, 03:14
Joined
Apr 22, 2022
Messages
17
Hey jdraw,

They are ratings. I guess a better example would be the student scores in different subjects, and I want to find which subject each student excels at the most. Ex: Student A got a 55.4% in Math and a 78.2% in Science. So I'd highlight Science as Student A's top class.
What do the Value 1 ... Value 11 represent?
 

jdraw

Super Moderator
Staff member
Local time
Today, 07:14
Joined
Jan 23, 2006
Messages
15,379
Based on your analogy, then the more appropriate data structure would be Student-->StudentMarkInSubject<--Subject
 
Local time
Today, 03:14
Joined
Apr 22, 2022
Messages
17
Based on your analogy, then the more appropriate data structure would be Student-->StudentMarkInSubject<--Subject
Yes, that would be ideal but unfortunately this is data coming from a third party. :/ I'm going to try CJ_London's suggestions and see how it turns out.
 

jdraw

Super Moderator
Staff member
Local time
Today, 07:14
Joined
Jan 23, 2006
Messages
15,379
Try CJ;s union query etc. Sounds good!

When I received "data" from a third party that was not in a format conducive to processing, we ran that data through a intermediate process to reformat the data to normalized form. Then, ran the normalized data through the "intended process".

If this is a recurring issue, you could set up something to streamline things.
 

CJ_London

Super Moderator
Staff member
Local time
Today, 12:14
Joined
Feb 19, 2013
Messages
16,607
I'm going to try CJ_London's suggestions and see how it turns out.
since this is marking, I guess it won't matter if there are two max marks with the same value.

Note that using the union query is a patch - if a new subject is added, you will need to modify the union query. Would be better to normalise the data as it is received per jdraw's suggestion
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 19:14
Joined
May 7, 2009
Messages
19,233
you create a function that will Return the MaxValue and the Field name where it is found.
see Module1 for the function fnMax().
Open Query1 and in design view see how the function is called from this query.
 

Attachments

  • multiple.accdb
    420 KB · Views: 146

GPGeorge

Grover Park George
Local time
Today, 04:14
Joined
Nov 25, 2004
Messages
1,829
Hi all!

I have a table with ~200 records and I need to compare 11 different fields to find which field has the largest value. Here's an example table:

State Name
[TD]Value 1[/TD]
[TD]Value 2[/TD]
[TD]Value 3[/TD]
[TD]Value 4[/TD]
[TD]Value 5[/TD]
[TD]Value 6[/TD]
[TD]Value 7[/TD]
[TD]Value 8[/TD]
[TD]Value 9[/TD]
[TR]
[TD]California[/TD]
[TD]20.22[/TD]
[TD]94.2[/TD]
[TD]74.0[/TD]
[TD]75.9[/TD]
[TD]33.33[/TD]
[TD]67.4[/TD]
[TD]60.5[/TD]
[TD]92.1[/TD]
[TD]14.6[/TD]
[/TR]
[TR]
[TD]Florida[/TD]
[TD]81.1[/TD]
[TD]48.6[/TD]
[TD]72.1[/TD]
[TD]57.5[/TD]
[TD]52.4[/TD]
[TD]79.9[/TD]
[TD]12.7[/TD]
[TD]16.8[/TD]
[TD]36.3[/TD]
[/TR]
The resulting table would look like this:

State NameMax ValueValue Name
California94.2Value 2
Florida81.1Value 1

I'm struggling to think of a good way to do this. I would be able to do a simple comparison if there were only 3 or so columns, but with 11 I'm feeling a bit overwhelmed. Any ideas would be greatly appreciated. Thank you in advance!
Perhaps you could correct this table design now and save a lot of trouble, such as trying to create this particular query, going forward. I realize that sometimes we get so far into a project that revising "spreadsheet" style tables to proper relational database tables is a significant undertaking and that in some situations, the effort seems overwhelming. However, in the long run, proper normalization is fundamental to a successful relational database application and it is well worth considering at any time.
 

Users who are viewing this thread

Top Bottom