![]() |
Inserting Quotation Marks in all Cells
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? |
Inserting Quotation Marks in all Cells
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? |
Inserting Quotation Marks in all Cells
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? |
Inserting Quotation Marks in all Cells
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? |
Inserting Quotation Marks in all Cells
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? |
All times are GMT +1. The time now is 07:02 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com