I have question about UNIQUE functions for random number generations in multi-dimension array.
As you can see in picture below , I try to generate an array with random and unique generated numbers of 1->100 inside 5X5 array.
I try both MAKEARRAY and RANDARRAY with the UNIQUE functions implemented in hopes that it can generate random number but it still produces duplicate numbers (Highlighted in red)
Here are the formula used
=UNIQUE(MAKEARRAY(5,5,LAMBDA(row,col,RANDBETWEEN(1,100))),,TRUE)
=MAKEARRAY(5,5,LAMBDA(row,col,UNIQUE(RANDBETWEEN(1,100),,TRUE)))
=UNIQUE(RANDARRAY(5,5,1,50,TRUE))
Are there any workaround on this ?(or any unknown hidden functions in Excel)