TextToColumns

L

Luis Rentería

Hi!

How can I avoid confirming if I wish or not to replace destination cells
while I use Text to Columns function?

It really doesn't matter if the contents of those cells is lost.

Thanks in advance.
 
G

Gord Dibben

Luis

This would have to be done through VBA code.

Sub Text_To_Col()
Application.DisplayAlerts = False
''Record your Data>Text to Columns steps here
Application.DisplayAlerts = True
End Sub

Gord Dibben 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

Top