Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Why can I not get this to work? I want to add quotes around text in a
range, using the following routine: -------------- Sub addQuotes() Dim cell As Range Dim contents As String Dim quotes As String quotes = "" For Each cell In Range("a1:aw1") If IsEmpty(cell.Text) = False Then contents = cell.Text cell.Value = quotes & contents & quotes End If Next cell End Sub ---------------- But the quotes don't show up. If the variable quotes is """" then I get double quotes around the text. What is a better way to approach this? Thanks for your help. -tom |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formating numbers &"Text" to appear as currency &"Text" in formula | Excel Discussion (Misc queries) | |||
"formula is too long" AND test for whether double-quotes are next-to text or number?? | Excel Discussion (Misc queries) | |||
Saving as Text (tab delimited) surrounds text with "quotes" | Excel Discussion (Misc queries) | |||
Insert "-" in text "1234567890" to have a output like this"123-456-7890" | Excel Discussion (Misc queries) | |||
I need to put text in quotes(") | Excel Programming |