November 30, 201213 yr I'm trying to use CustomList to cycle through parameters declared in the let statement that the function is embedded in, but it looks like it won't accept parameters passed into it. Here's a very simple look into what I'm trying: Let ( [ _number = 1 ] ; CustomList ( 1 ; 10 ; "_number * [n]" ) ) The error that comes back says that the field reference doesn't exist. Error 102. Is there a way around this? If so, it would be amazingly powerful. Thanks! jared
December 1, 201213 yr Solution Your way to pass the parameter is wrong. Try instead: CustomList ( 1 ; 10 ; "Let ( _number = 1 ;_number * [n] )" ) .. and yes, it is amazingly powerful !!
Create an account or sign in to comment