I’m trying to create a number sequence which would have different start based on the list length in a list.
The number sequence should start with 100, 200 or 300 based on the length of the sublists in the count list.
//If the value is smaller or equal to 10 use 100
x<= 10? 100:
//Then if the value is smaller or equal to 200 use 200 if not then use 300
x<= 200 ? 200 : 300;
Hi @Daniel_Hurtubise, @Nick_Boyts and @erfajo
Sorry I wasn’t being clear enough about the solution I was trying to achieve.
I came up with a very simple solution yesterday, where I just used List.OfRepeatedItem to make the list lengths match and then it’s working.