I'm trying to compare version numbers of software applications and need to retrieve the highest value, in other words keep track what is the latest version at any given time sheet is updated. Each application has a single, dedicated row containing the version numbers in random order (it is also possible for some or all cells to contain the same version). Format of the version numbers:
1.0.0
1.0.1
1.1.0 << highest of the three
Can also be:
1.11.0 << lowest
1.2.0 << 2nd highest
2.00.0 << highest
Also:
11.22.33
11.3.1 << highest
I have been trying to achieve this by using
another thread as a base guide, but have not had too much success with it.
It would be most appreciated, should someone be available to assist me with this problem.