Hi I have a scenario where I have a number of Custom List Fields that are using the same List of values
for example AIS 1 , AIS 2 and AIS 3, Values cannot be repeated across the Fields and there is no Guarantee of Order.
So In AIS 3 I have created the following formula:
if field('AIS 2').nil? then nil
else
options = ['AIS12','AIS16','AIS20','AIS24','AIS28','AISb1','AISB2','AISER','AISY'];
remove = [field('AIS 1'), field('AIS 2')];
pick = options.excluding(remove);
generate("Custom List", values: pick)
end
This Works fin, but I was wondering is there a way to Load the Options from the first Field i.e. AIS 1 ?
I was thinking something like
options = field('AIS 1').values
I’ve tried a bunch of things but none seem to work
any tips or pointers ?