Speak Cells

keeshslow

New Member
Joined
Mar 31, 2017
Messages
4
I have just discovered speak cells in Excel which i will find very useful, I have however found an issue. I have a worksheet with numbers that exceed 1 million. The cells are formatted to show £, thousand separator and 2 decimal places. Using speak cells is fine for anything under 1 million and she says just the numbers (£345.00 = Three hundred and forty five) but anything over 1 million she speaks the currency, commas and decimal places (£1,253,450.00 = Pound one comma two five three comma four fifty dot zero zero. Its very annoying, any advice would be very much appreciated. TIA
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Try speaking the text of the cell instead of the value.
Application.Speech.Speak Range("A1").Text
 
Upvote 0
Sorry. Out of my scope. I am not getting the same results on my system. Can you share your workbook?
 
Upvote 0
Surely the code is asking for it to be spoken as text therefore it will not be spoken as a value which is what i want.
 
Upvote 0
Hello Keeshslow,

Adding a formatting rule may help (other than this, I'm not sure what else can be done):-

VBA Code:
Sub Test()
Application.Speech.Speak (Format(Range("A1"), "$#,##0.00"))
End Sub

Just change the "$" symbol to suit your currency.

I hope that this helps.

Cheerio,
vcoolio.
 
Upvote 0
Thanks for the suggestions guys but i'm not getting the result i'm after. The only way is to format the cells as just numbers without the separators and currency.
Thanks anyways
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,728
Members
448,987
Latest member
marion_davis

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