unique_combinations_counter_rec ( number_values )
Same as "unique_combinations_counter (number_values)"; but recursive. This function calculates the number of unique combinations of n values (WARNING 212 Values Max)
Average rating: 4.3 (35 votes) Log in to vote
ericire - Show more from this author |
unique_combinations_counter_rec(50)
1125899906842623
Function definition: (Copy & paste into FileMaker's Edit Custom Function window)
Same as "unique_combinations_counter (number_values)"; but recursive.
This function calculates the number of unique combinations of n values (WARNING 212 Values Max)
ex :
list = "a¶b¶c¶d" ----> 4 values
combinations = "a¶b¶c¶d¶ab¶ac¶ad¶bc¶bd¶cd¶abc¶abd¶acd¶bcd¶abcd"
---> 15 unique values (without aa, abc=bca=cab=acb...)
Comments
Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.