Randomizing table contents

Tamig93

New Member
Joined
Apr 3, 2020
Messages
2
Office Version
  1. 2016
Platform
  1. Windows
I am trying to create a Memory Game in Powerpoint. I have textboxes with words, aligned in a table. I want to be able to click on a "Shuffle" command and all of the words will randomly be placed in a different place in the table. I have added a picture to show what I mean.If there is a way to do this in Excel and then import the table to Powerpoint, that is OK as well.
ppt pic.png
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Here is an excel file for building Bingo Cards. I think this concept can be modified to your needs.

It doesn't seem like it will work exactly. My goal is that whoever is presenting the PowerPoint can click on a button that will automatically run a macro to randomize the placement of the words.
 
Upvote 0
Build a command button and attach this code to it.

VBA Code:
Private Sub CommandButton1_Click()
Application.Calculate
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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