After I press a button, I want the macro to randomly select one of the cells (divided by names) based on a value in another cell.
It's easier if I show it:
Sub PickRnd()
Dim rng As Range
Dim Rw As Long
Set rng = Range(Choose(Range("I9").Value, "Weapons", "Armour", "Offhand"))
Rw = Int(rng.Count * Rnd() + 1)
Range("K10").Value = rng.Cells(Rw, 1)
End Sub
Thanks for the help! It seems to be working for the example I gave, though I'm still trying to figure out how certain parts of the code work so that I can translate it to my other project which uses more lists and more possible values for the "I9".
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.