Hello,
What would be the alternative to the following as an Excel Function?
#Scores is a matrix of 20 x 3
for i in range(scores):
for j in range(scores):
if all(scores[j] >= scores[i]) and any(scores[j] > scores[i]):
#if true then return 0, if false then return 1
Bookmarks