Forum Discussion
Need reccomendations for building a ticket puller for a raffle with Excel.
- Dec 08, 2023
Joshua655 You were very close, instead of LOOKUP, it's better to use XLOOKUP where we can define the match mode to be "Next larger". Your formula should look like this:
=XLOOKUP(RAND(),E2:E7,A2:A7,,1)
To make sure each participant can only win one prize, we have to filter the existing dataset as following:
=FILTER(A2:C7,A2:A7<>G2)
I made a custom video for you, explaining how to build the raffle system step-by-step: https://www.youtube.com/watch?v=gjT_92KZy-E
Optional tip if this was helpful: [link removed by admin]
Joshua655 You were very close, instead of LOOKUP, it's better to use XLOOKUP where we can define the match mode to be "Next larger". Your formula should look like this:
=XLOOKUP(RAND(),E2:E7,A2:A7,,1)
To make sure each participant can only win one prize, we have to filter the existing dataset as following:
=FILTER(A2:C7,A2:A7<>G2)
I made a custom video for you, explaining how to build the raffle system step-by-step: https://www.youtube.com/watch?v=gjT_92KZy-E
Optional tip if this was helpful: [link removed by admin]