Forum Discussion
SergeiBaklan
Jan 22, 2022Diamond Contributor
long texts with arrays in conditional functions
PeterBartholomew1 , tboulden or someone else
Perhaps you know the workaround, even with lambdas. In simplest case
=IF( 1, REPT("a", 256) ) works
=IF( {1}, REPT("a", 256) ) returns #VALUE!
...
PeterBartholomew1
Jan 23, 2022Silver Contributor
Sorry, I haven't got around to looking at the forum until now. Try
= REDUCE("",SEQUENCE(512),
LAMBDA(concat,k, concat&"a")
)
PeterBartholomew1
Jan 23, 2022Silver Contributor
or
= CONCAT(
MAP(SEQUENCE(512),
LAMBDA(k,"a")
)
)