Tech

How To Make A Raffle Draw In Excel

How To Make A Raffle Draw In Excel

Raffles offer a delightful and effective means to generate funds for diverse events and causes. Leveraging Excel’s robust features, you can seamlessly organize and oversee a raffle. Here’s a step-by-step guide with simple examples:


Step 1: Setting Up Your Excel Worksheet

  1. Open Microsoft Excel and initiate a new workbook.
  2. Rename the default sheet to “Participants” by double-clicking on the sheet tab.
  3. Within the “Participants” sheet, establish columns for vital details like “Name,” “Email,” “Ticket Number,” and “Potential Winner’s Name.”


Step 2: Adding Participant Details

  1. Input participant details into the respective columns, with each row representing a distinct participant.
  2. Ensure comprehensive information, including names and contact details, to facilitate a smooth raffle process.
  3. Assign a unique ticket number to each participant, either through a formula or manual entry.

Example: For a charity raffle with 20 participants:


Step 3: Preparing the Raffle Drawing Section

  1. Create a new sheet by clicking the “+” button at the bottom of the workbook.
  2. Rename the new sheet to “Raffle Drawing” or a preferred name.
  3. Establish columns in this sheet to exhibit winning ticket numbers and corresponding winners’ names.


Step 4: Randomly Selecting a Winner

  1. In the “Winning Ticket Number” column of the “Raffle Drawing” sheet, utilize the formula: =RANDBETWEEN(2,COUNTA('Participants'!C:C))

    This formula generates a random number between 2 and the total number of participants. Adjust the column reference (‘Participants’!C:C) as needed.

  2. In the “Winner’s Name” column, employ the formula: =VLOOKUP(A2, 'Participants'!$C$2:$D$21, 2, FALSE)
    • A2: Refers to the winning ticket number in the same row.
    • 'Participants'!$C$2:$D$21: Excel searches for the winning ticket number and retrieves the corresponding name. Adjust this range to match your columns.
    • 2: Specifies Excel to get the value from the second column of the range, containing participant names.
    • FALSE: Indicates an exact match.


Example: If the winning ticket number in cell A2 is 8, the VLOOKUP formula in cell B2 would be:
=VLOOKUP(A2, 'Participants'!$C$2:$D$21, 2, FALSE)

Leave a Reply

Your email address will not be published. Required fields are marked *