I'm new at this. I want to compare two columns in a query. They are from different tables. One is the original install verision and the other is the updated version if there is one. I want to be able to see the max or highest software version. Any ideas?
I do not KNOW wheather all of the various "software" would have the same info re the "version". I would not even know how to programatically collect this info from all of the executable (?) software on a machine, much less the various applications file types.
Leaving that morass of UGLY questions aside, I would just "ASSUME" the best and create a calculated col:
Latest: IIF([Orig] < [Curr], [Curr], [Orig])
Again, with the "leap of Faith" ASSUMPTION, at least the software package would have the same format for Version level reporting, This would return either the (Content of) the [Orig] or [Curr] field. Variations on the theme are almost endless, so I will 'leave the remainder' to the student.
MichaelRed
mred@att.net
There is never time to do it right but there is always time to do it over
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.