Speech / Voice prompt solution

diageminc

New Member
Joined
Apr 15, 2010
Messages
25
Hello,

We sell products, and every morning we print a "pick list" (column A has "item#" and Col B has "Qty") and then the worker goes into the warehouse and pick the items. Currently she holds the sheet in one hand and reads and uses the other hand to pick the item.


We are looking for a solution that will read the items to her, this way both her hands are free to pick. We thought of using Excel's text to speech, but from what i understand we cannot use voice prompts to control give control commands to pause, repeat or stop the read back.


Any ideas?

diageminc
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
.
Paste this macro into the Sheet Level Module :

Code:
Option Explicit


Sub Check_Speach()
  'Read Data from Excel Sheet
   Application.Speech.Speak Selection                   
End Sub

Excel 2007 32 bit
A
B
C
D
E
F
1
Well, hello Dolly. Hello, Dolly. Its so nice to see you back where you belong.
2
3
This is a test 1
4
5
This is another test
6
7
Pull Row 2, Left side, Shelf 15.
8
9
Time for a break.
Sheet: Sheet1
As you can see from the above shot of the excel sheet, the user will need to click on the row/cell to be spoken.
Then they click the command button to run the macro. Excel speaks the text and stops.

They then move to the next row and repeat.

HTH
 
Last edited:
Upvote 0
Thank you for the solution. I am sorry i was not able to explain the issue more clearly. The user doing the picking will not be able to run to the computer and click each time, the text to speech should start and read each row and stop and with a voice command such as "next" it should read the next row
 
Upvote 0

Forum statistics

Threads
1,214,861
Messages
6,121,973
Members
449,059
Latest member
oculus

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