Hello all, I would like to know if anyone can help .. I have a wrestling app. in fmp8 that assigns a unique # based on the number of wrestlers within a wht-class... (5 wrestlers in wht-class 125lb) so wrt#1 wrt#2...... wr#5.
Now heres the tricky part... i want to use a custum function to show a list of every wrt# and match it up with every wrt#, without any repeats or matching itself..
1-2
3-4
5-Bye
2-3
4-5
1-Bye
3-5
1-4
2-Bye
1-5
2-4
3-Bye
2-5
1-3
4-Bye
I know there are some functions CombineValues( list1, list2, divider )
that combins all values in two lists but they have repeats and match ...
( 1-1¶5-5) (2-4¶ 4-2 ).. but that will not work in my case.