About 50 results
Open links in new tab
  1. excel - Randomize a Weekly Schedule - Stack Overflow

    May 7, 2020 · In order randomize the list I have two columns in excel the first column has names and the second list uses =rand() to create a random seed. I then organize the two columns from smallest …

  2. excel - Randomize List VBA - Stack Overflow

    Oct 11, 2017 · I'm fairly new to VBA. I'm trying to randomize a list with VBA. The list has two headers "Name" and "Dials". I want to try to randomize the list with a macro then applying it with a button. I've t...

  3. excel - Randomized list with no repeats or duplicates from list of ...

    Jun 16, 2022 · Here is the approach I would use: create a random number in a new column (looks like you have done that) order the column you care about by the random column (this will be a random …

  4. random - How to randomize Excel rows - Stack Overflow

    Jul 14, 2012 · 61 How can I randomize lots of rows in Excel? For example I have an excel sheet with data in 3 rows. 1 A dataA 2 B dataB 3 C dataC I want to randomize the row order. For example 2 B …

  5. excel - Shuffle an array in vba - Stack Overflow

    Apr 3, 2020 · I need to shuffle values in array with no duplications, what do i need to add in my code to avoid duplications Function Resample(data_vector) n = UBound(data_vector) ReDim …

  6. Random Number within a range without repetition in VBA

    Aug 15, 2015 · Closed 10 years ago. What would be the VBA code in excel to generate ONE random number between 1 to 100 that is displayed in a given cell (say A1) upon clicking a button, and then …

  7. Generating a list of random words in Excel, but no duplicates

    Jul 24, 2013 · This generates a word from the list I have provided in A1:A20, but I don't want any duplicates. GetText() will be run 15 times in Column B from B1:B15. How can I check for any …

  8. excel - Random selection from list - Stack Overflow

    3 I have a list of items in an Excel worksheet, A1-B115. At the moment I can enter 10 variables which retrieves the correct data from the list. Code now: C1=1 - run through A1-A115 and check for the …

  9. Random element from array in Excel-VBA - Stack Overflow

    Oct 1, 2013 · Random element from array in Excel-VBA Asked 12 years, 2 months ago Modified 1 year, 9 months ago Viewed 15k times

  10. Excel Random Number with Specified Percentage - Stack Overflow

    May 13, 2017 · By saying integer 1, I mean I want the number to be a whole number without decimal places. For example, I want to assign random numbers to 10 cells with a range of 1 to 10. But, I want …