Select from a list

  • Thread starter Thread starter frisbee_train
  • Start date Start date
F

frisbee_train

does anyone know how to get excel to select randomly from a list of values.

lets say A1=Dave, A2=Gaz, A3= James, A4=pete.

is there are function that can select one of the four names randomly?
 
One way with your list in column A try this formula in another cell

=INDIRECT("A"&RANDBETWEEN(1,4))

Change the 4 to however many names you have in your list and Tap F9 to get a
different name.

Mike
 
Back
Top