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

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
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,573
Messages
6,125,608
Members
449,238
Latest member
wcbyers

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