Answer the question
In order to leave comments, you need to log in
How to make a selection by value in Excel
How to make a form.?
Suppose there are 20-30 digital values from this range, 16
maximum values \u200b\u200bare added together and the resulting amount is multiplied by a certain
coefficient
15 30 25 22 20 8 6 4 7 5 6 7 12 25 56 40 98 15 30 25 22 20 8 6 4 7
from these numbers the maximum value (16) is selected and added together
You can use not Excel but php to make one enter the values in the window and in the other window you will get the result.
Answer the question
In order to leave comments, you need to log in
You can use php instead of excel
$originalString = '5 6 7 12 25 56 40 98 15 30 25 22 20 8 6 4 7 5 6 7 12 25 56 40 98 15 30 25 22 20 8 6 4 7 5 6 7 12 25 56 40 98 15 30 25 22 20 8 6 4 7';
$originalArray = implode(' ', $originalString);
rsort($originalArray);
$originalArray = array_slice($originalArray, 0, 16);
echo 'Итого: ', array_product($originalArray);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question