Forum Discussion
tfrisbie
Nov 09, 2022Copper Contributor
Auto Populate Win Sheet via Numbers in another worksheet
I am running a pool and want to have the Win Sheet auto populate an X in a new column for every time the number comes up in the master worksheet. I was trying to use this formula =IF(COUNTIF(Mast...
PeterBartholomew1
Nov 12, 2022Silver Contributor
If you are still having problems, it may be that
= LET(
count, COUNTIFS(Data, numbers),
n, MAX(count),
k, SEQUENCE(1,n),
wins, IF(k<=count,"X",""),
)would work for you. I have removed the VSTACK that I used simply to lay out the results sheet because the array manipulation functions came out even later than LAMBDA. If I were developing this formula for my own use, I would create a custom Lambda function so that the formula has the same look and feel as every other formula throughout my workbook but that has most users feeling faint and reaching for the smelling salts!
- tfrisbieNov 14, 2022Copper ContributorThanks Peter -
Unfortunately I do not have access to LAMBDA so that's unfortunate! But I appreciate the response.