Imported Formats

  • Thread starter Thread starter CharlesF
  • Start date Start date
C

CharlesF

Our Accounting package exports to Excel but the fields are
all preceded with the Left Justification character, ie: " ' ".

How do I find all these and replace them. The Menu Item
Find says they do not exist.

Thank
 
Charles,

Select all your cells and run this macro:

Sub MacroForCharles()
Dim myCell As Range
On Error Resume Next
For Each myCell In Selection
myCell.Value = myCell.Text
Next myCell
End Sub

HTH,
Bernie
MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top