Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEA2 questions - number of one-winner jackpots and highest jackpot amount won by a single winner.
Thanks!
T1 is another case of unclear requirements. Nobody ever one 6/6 of an 'ACCUMULATED' jackpot. If you take out the 'accumulated jackpot' requirement, then you have a bunch.
Anyone please DM me if there's a more elegant way than this in Alteryx (maybe a function exists) to convert decimal points to thousand separators and vice-versa
ToNumber(
replace(
replace(
replace([Prize won by each player (match 6/6)],'.',':')
,',','.')
,':', ',')
,2)