Forum Discussion
Eppes_A_Yungeman
Jun 17, 2022Copper Contributor
Makearray within formula
I am trying to get the minimum value in an array that is generated using a formula. I would like to do this in one cell using MAKEARRAY, something like "=MIN(MAKEARRAY(10,1,LAMBDA(a,b,IFERROR(IF(a=""...
Eppes_A_Yungeman
Jun 17, 2022Copper Contributor
I don't remember what exactly I did but I once got an error that was something like "nested arrays not allowed". I wonder if this issue is related to that.
mtarler
Jun 17, 2022Silver Contributor
so A) LAMBDA is fully released
B) "nested arrays not allowed" is something else
C) we should send Feedback (File -> Feedback -> I don't like something)
B) "nested arrays not allowed" is something else
C) we should send Feedback (File -> Feedback -> I don't like something)
- SergeiBaklanJun 18, 2022Diamond Contributor
More about auto-lifting is here Yellow (lambdadays.org), "Auto-lifting/coercion" slide.
Usually it doesn't work in combination of some "old" functions and dynamic arrays, for example
Sometimes with named formulae. To force it, if reference adding of plus +range helps, if an array add something to it as here with +0
- mtarlerJun 18, 2022Silver Contributorinteresting. what is meant by "auto-lifting issue" and when/where else does this happen?
- SergeiBaklanJun 17, 2022Diamond Contributor
It looks like another auto-lifting issue with lambdas.
=MIN( 0 + MAKEARRAY(10,1, LAMBDA(a,b,a) ) )also works.