VBA correction

Jan Kalop

Active Member
Joined
Aug 3, 2012
Messages
389
I have VBA formula which is working perfectly, but only the results are all in one column and I would like them to appear in one specific row.


"Sub TwentyfiveRandOf25ONLY6()
Dim anArray(1 To 28) As Long
Dim i As Long
Dim randIndex As Long, temp As Long
For i = 1 To 28
anArray(i) = i
Next i
For i = 1 To 28
Randomize
Do
randIndex = (Rnd() * 28) + 1
Loop Until randIndex <= 28
temp = anArray(randIndex)
anArray(randIndex) = anArray(i)
anArray(i) = temp
Next i
Range("ck5:ck11").Value = Application.Transpose(anArray)
End Sub"


When I change the array from ck5:ck11 to for sample to CK5:CR5 the formula do not work. What have to be change to get the result in row?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try...

Code:
Range("CK5:CR5").Value = anArray

Hope this helps!
 
Upvote 0
Code:
'Range("ck5:ck11").Value = Application.Transpose(anArray
  Range("ck5").Resize(, 6).Value = anArray
 
Upvote 0
Also, to resize the horizontal range according to the size of anArray...

Code:
Range("ck5").Resize(, ubound(anArray)).Value = anArray
 
Upvote 0
Thank you very much to everyone for help. It works like a charm. One more thing, that I learned and thanks for that.
 
Upvote 0
Thank you very much to everyone for help. It works like a charm. One more thing, that I learned and thanks for that.

Assuming the 28 numbers and the 6 number output are fixed and won't change, then this macro will also work...
Code:
Sub TwentyfiveRandOf25ONLY6()
  Dim i As Long, randIndex As Long, Temp As Long, anArray As Variant
  anArray = [COLUMN(1:28)]
  Randomize
  For i = 28 To 1 Step -1
    randIndex = Int(i * Rnd + 1)
    Temp = anArray(randIndex)
    anArray(randIndex) = anArray(i)
    anArray(i) = Temp
  Next i
  Range("c5").Resize(, 6).Value = anArray
End Sub
 
Upvote 0
Great, but how to change the VBA code to be able to change numbers 28 and 6 from cells on worksheet
 
Upvote 0
Assuming the 28 numbers and the 6 number output are fixed and won't change, then this macro will also work...
Code:
Sub TwentyfiveRandOf25ONLY6()
  Dim i As Long, randIndex As Long, Temp As Long, anArray As Variant
  anArray = [COLUMN(1:28)]
  Randomize
  For i = 28 To 1 Step -1
    randIndex = Int(i * Rnd + 1)
    Temp = anArray(randIndex)
    anArray(randIndex) = anArray(i)
    anArray(i) = Temp
  Next i
  Range("c5").Resize(, 6).Value = anArray
End Sub



Great, but how to change the VBA code to be able to change numbers 28 and 6 from cells on worksheet
 
Upvote 0
Great, but how to change the VBA code to be able to change numbers 28 and 6 from cells on worksheet
It would have helped if you had told us those numbers were not fixed originally rather than give us an example which made it seem like they were. Anyway, give this macro a try (you can set the MaxNumber and HowManyRands by whatever method you want...
Code:
[table="width: 500"]
[tr]
	[td]Sub GetRandomNumbers()
  Dim i As Long, randIndex As Long, Temp As Long, anArray As Variant
  Dim MaxNumber As Long, HowManyRands As Long
[B][COLOR="#0000FF"]  MaxNumber = 28
  HowManyRands = 6
[/COLOR][/B]  anArray = Evaluate("COLUMN(1:" & MaxNumber & ")")
  Randomize
  For i = MaxNumber To 1 Step -1
    randIndex = Int(i * Rnd + 1)
    Temp = anArray(randIndex)
    anArray(randIndex) = anArray(i)
    anArray(i) = Temp
  Next i
  Range("c5").Resize(, HowManyRands).Value = anArray
End Sub[/td]
[/tr]
[/table]
 
Last edited:
Upvote 0
It would have helped if you had told us those numbers were not fixed originally rather than give us an example which made it seem like they were. Anyway, give this macro a try (you can set the MaxNumber and HowManyRands by whatever method you want...
Code:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Sub GetRandomNumbers()
  Dim i As Long, randIndex As Long, Temp As Long, anArray As Variant
  Dim MaxNumber As Long, HowManyRands As Long
[B][COLOR=#0000FF]  MaxNumber = 28
  HowManyRands = 6
[/COLOR][/B]  anArray = Evaluate("COLUMN(1:" & MaxNumber & ")")
  Randomize
  For i = MaxNumber To 1 Step -1
    randIndex = Int(i * Rnd + 1)
    Temp = anArray(randIndex)
    anArray(randIndex) = anArray(i)
    anArray(i) = Temp
  Next i
  Range("c5").Resize(, HowManyRands).Value = anArray
End Sub[/TD]
[/TR]
</tbody>[/TABLE]


Sorry Sir, but my english is not very good and because of that probably there is so much confusion.
What I am looking for is to ba able to change those numbers ( MaxNumber and MaxNumber) from designated cell on an active sheet
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,022
Members
448,939
Latest member
Leon Leenders

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top