Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Hi!
I have a co-worker who needs to insert quotation marks in the entire worksheet. It contains both numbers and text. The quotation marks need to be inserted around each individual cells data. Can someone help? |
#2
![]() |
|||
|
|||
![]()
Enter this small macro:
Sub quoteit() Dim r As Range For Each r In Selection If IsEmpty(r.Value) Then Else r.Value = Chr(34) & r.Value & Chr(34) End If Next End Sub Select all or some portion of the worksheet and run the macro. It will put quote marks before and after the contents of all selected non-empty cells -- Gary's Student "confused" wrote: Hi! I have a co-worker who needs to insert quotation marks in the entire worksheet. It contains both numbers and text. The quotation marks need to be inserted around each individual cells data. Can someone help? |
#3
![]() |
|||
|
|||
![]()
Hey Thanks!
Now, can you make it insert quotation marks in empty cells as well as cells containing data? "Gary''s Student" wrote: Enter this small macro: Sub quoteit() Dim r As Range For Each r In Selection If IsEmpty(r.Value) Then Else r.Value = Chr(34) & r.Value & Chr(34) End If Next End Sub Select all or some portion of the worksheet and run the macro. It will put quote marks before and after the contents of all selected non-empty cells -- Gary's Student "confused" wrote: Hi! I have a co-worker who needs to insert quotation marks in the entire worksheet. It contains both numbers and text. The quotation marks need to be inserted around each individual cells data. Can someone help? |
#4
![]() |
|||
|
|||
![]()
Yes. We will just get rid of the IF:
Sub quoteit() Dim r As Range For Each r In Selection r.Value = Chr(34) & r.Value & Chr(34) Next End Sub -- Gary's Student "confused" wrote: Hey Thanks! Now, can you make it insert quotation marks in empty cells as well as cells containing data? "Gary''s Student" wrote: Enter this small macro: Sub quoteit() Dim r As Range For Each r In Selection If IsEmpty(r.Value) Then Else r.Value = Chr(34) & r.Value & Chr(34) End If Next End Sub Select all or some portion of the worksheet and run the macro. It will put quote marks before and after the contents of all selected non-empty cells -- Gary's Student "confused" wrote: Hi! I have a co-worker who needs to insert quotation marks in the entire worksheet. It contains both numbers and text. The quotation marks need to be inserted around each individual cells data. Can someone help? |
#5
![]() |
|||
|
|||
![]()
Okay then! Thanks sooo much!
"Gary''s Student" wrote: Yes. We will just get rid of the IF: Sub quoteit() Dim r As Range For Each r In Selection r.Value = Chr(34) & r.Value & Chr(34) Next End Sub -- Gary's Student "confused" wrote: Hey Thanks! Now, can you make it insert quotation marks in empty cells as well as cells containing data? "Gary''s Student" wrote: Enter this small macro: Sub quoteit() Dim r As Range For Each r In Selection If IsEmpty(r.Value) Then Else r.Value = Chr(34) & r.Value & Chr(34) End If Next End Sub Select all or some portion of the worksheet and run the macro. It will put quote marks before and after the contents of all selected non-empty cells -- Gary's Student "confused" wrote: Hi! I have a co-worker who needs to insert quotation marks in the entire worksheet. It contains both numbers and text. The quotation marks need to be inserted around each individual cells data. Can someone help? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Inserting carriage returns in Excel cells | Excel Discussion (Misc queries) | |||
how do i protect cells in a shared worksheet | Excel Discussion (Misc queries) | |||
Conditional formatting...cont. from 9/25 | Excel Discussion (Misc queries) | |||
Excel Quotation Marks! | Excel Discussion (Misc queries) | |||
inserting row into linked cells | Excel Worksheet Functions |