Results 1 to 18 of 18

Wrong coding or RANDBETWEEN is wrong?

Threaded View

  1. #1
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Wrong coding or RANDBETWEEN is wrong?

    I've try to solve this question: http://www.excelforum.com/excel-prog...32#post3340932

    Now, first I've used solution with RANDBETWEEN function:

    Sub fill_random_x()
    Dim x As Integer, y As Integer
    Dim rng As Range
    Set rng = Sheets("Sheet1").Range("A1:C6")
       
    'For m = 1 To 100000
    rng.ClearContents
       
    Do While Application.WorksheetFunction.CountIf(rng, "x") < 6
        x = Application.WorksheetFunction.RandBetween(1, rng.Rows.Count)
        y = Application.WorksheetFunction.RandBetween(1, rng.Columns.Count)
        Cells(x, y) = "x"
        'Cells(x, y).Offset(, 5) = Cells(x, y).Offset(, 5) + 1
    Loop
       
    'Next m
       
    End Sub
    However, I got bad distribution:

    4,60%	5,63%	6,42%
    7,03%	5,70%	4,05%
    6,64%	4,45%	5,55%
    4,02%	6,96%	5,65%
    5,53%	6,71%	4,50%
    5,65%	4,03%	6,88%
    With this approach it looks fine:
    Sub fill_random_x_v2()
    Dim x As Integer, y As Integer
    Dim rng As Range
    Set rng = Sheets("Sheet1").Range("A1:C6")
       
    rng.ClearContents
       
    Do While Application.WorksheetFunction.CountIf(rng, "x") < 6
        x = Int(1 + Rnd() * rng.Rows.Count)
        y = Int(1 + Rnd() * rng.Columns.Count)
        Cells(x, y) = "x"
    Loop
    End Sub
    And result is:
    5,53%	5,58%	5,59%
    5,53%	5,59%	5,53%
    5,56%	5,57%	5,54%
    5,51%	5,55%	5,53%
    5,57%	5,57%	5,58%
    5,55%	5,58%	5,54%
    Is there a my fault or really RANDBETWEEN doesn't work as expected?
    Attached Files Attached Files
    Never use Merged Cells in Excel

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. What am I doing wrong??
    By nimblejack in forum Excel General
    Replies: 2
    Last Post: 01-10-2010, 12:14 AM
  2. What Am I doing wrong here?
    By Aurbo99 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-14-2007, 09:32 PM
  3. What am I doing wrong....!!!
    By squoggy in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-02-2005, 01:05 PM
  4. What am I doing wrong?
    By Jeff in forum Excel - New Users/Basics
    Replies: 4
    Last Post: 03-05-2005, 11:07 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1