About 50 results
Open links in new tab
  1. 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 …

  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 - 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 …

  4. 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 …

  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. 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 …

  7. 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

  8. 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 …

  9. excel - randomise rows in VBA - Stack Overflow

    It's true that this question has many possible answers. This is probably the most lame one, but it works quite ok actually: Add an additional column; Then put random value in this column; Sort by this …

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

    Jul 24, 2013 · I'm trying to generate words in Column B from a list of given words in Column A. Right now my code in Excel VBA does this: Function GetText() Dim GivenWords GivenWords = …