Hi everybody,
Let's say I've got 2 tables linked to one another (NUMBERS and OBJECTS)
- Table 1: 100 NUMBERS ranked from 1-100
- Table 2: OBJECTS which are randomly linked to these NUMBERS
- OBJECT A is linked with 6 random NUMBERS: 5, 6, 7, 11, 12, 13
- In OBJECT's there's a field {ranking} that says 11
My question...
In OBJECTS I would like to create a rollup field that shows me all the NUMBERS ranked higher then 11 according to the {ranking} field in OBJECTS
It can't be done with the "regular" condintional settings. So I tried to include a formula at the bottom of the Rollup field:
IF(value > {ranking},ARRAYJOIN(values, ", "))
I was hoping to see: 12, 13 but i got #ERROR instead... Is there a way to include logical operators and field values within the formula of a Rollup field?
Also... working with text fields instead of numeric fields leads to a new problem. Thats only works when the NUMBERS are linked in the right order. For instance if OBJECT A is linked like this: 7, 11, 5, 13, 12, 6... I still want my outcome to be 12 and 13.
I've looked into the 'ARRAYSLICE' function which I haven't used before. But that function also seems to work with a position of a certain string in a text, rather than a numeric value like < or =
Any suggestions?
Thanks,