A way to compare values out of 100 "per100"

One way to compare values out of 100 is by using a percentage scale. Here's a possible approach:

1. Determine the maximum value that you want to compare against. Let's say it is 100.
2. Calculate the percentage of each value in relation to the maximum value. Divide each value by the maximum value and multiply by 100.
3. Use the resulting percentages to compare the values. The higher the percentage, the greater the value.

For example, let's compare three values: value1 = 50, value2 = 75, value3 = 90.

1. The maximum value is 100.
2. Calculate the percentages:
- value1: (50 / 100) * 100 = 50%
- value2: (75 / 100) * 100 = 75%
- value3: (90 / 100) * 100 = 90%
3. Compare the percentages:
- value3 (90%) > value2 (75%) > value1 (50%)

This method allows you to compare values out of 100 on a standardized scale.