Prevent Excel from converting text to columns
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
When I'm using Excel to parse multiple documents, and I need to control the import (Text, not General, on column import settings being the most notable example), how can I prevent Excel from automatically running the text-to-column import wizard for me automatically. I prefer to run it manually everytime, even tho I realize that Excel is just trying to be helpful by doing the thing I just did.
It just doesn't convert the columns to Text first.
microsoft-excel microsoft-excel-2011
add a comment |
When I'm using Excel to parse multiple documents, and I need to control the import (Text, not General, on column import settings being the most notable example), how can I prevent Excel from automatically running the text-to-column import wizard for me automatically. I prefer to run it manually everytime, even tho I realize that Excel is just trying to be helpful by doing the thing I just did.
It just doesn't convert the columns to Text first.
microsoft-excel microsoft-excel-2011
add a comment |
When I'm using Excel to parse multiple documents, and I need to control the import (Text, not General, on column import settings being the most notable example), how can I prevent Excel from automatically running the text-to-column import wizard for me automatically. I prefer to run it manually everytime, even tho I realize that Excel is just trying to be helpful by doing the thing I just did.
It just doesn't convert the columns to Text first.
microsoft-excel microsoft-excel-2011
When I'm using Excel to parse multiple documents, and I need to control the import (Text, not General, on column import settings being the most notable example), how can I prevent Excel from automatically running the text-to-column import wizard for me automatically. I prefer to run it manually everytime, even tho I realize that Excel is just trying to be helpful by doing the thing I just did.
It just doesn't convert the columns to Text first.
microsoft-excel microsoft-excel-2011
microsoft-excel microsoft-excel-2011
asked Apr 23 '13 at 17:09
jcolebrandjcolebrand
62551027
62551027
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can change the layout or properties for the imported data at any time. On the Data menu, point to Get External Data, and then click either Edit Text Import or Data Range Properties.
If you select Edit Text Import, select the file that you imported originally, and then make changes to the external data in the Text Import Wizard.
By selecting Data Range Properties, you can set query definition, refresh control, and data layout options for the external data.
add a comment |
If you are on a version of Excel that does not contain "Get External Data" under Data menu (such as Excel 2003, which is my primary version due to the anti-productive "upgrades" of Office 2007 through 2013), you can prevent the "helpful" behavior they force on you either by a few manual steps or by a macro (a macro is faster & easier, so I put it in my personal.xls):
- Add a workbook (or Ctrl+N)
- Type the letter A in cell
A1
- Click cell
A1
- Start “Text to Columns” (or Alt+D, E)
- Choose delimited (or Alt+D)
- Hit Enter
- Unselect every checkbox
- Click Finish (or Alt+F)
- Close the workbook; do not save.
Now the "helpful" behavior will be prevented when you paste again.
In code,
' Differs from Walkenbach in that he just populated A1 if empty, did this on A1, restored A1.
' This is better IFF you are allowed to add a workbook.
Sub FixAutomaticTextToColumns()
If ActiveSheet.ProtectContents Then MsgBox _
"BTW, the active sheet is protected. Consider unprotecting 'ere TextToColumns"
Workbooks.Add
Cells(1) = "A" 'Required, else TextToColumns will error
Cells(1).TextToColumns DataType:=xlDelimited, Tab:=False, semicolon:=False, _
comma:=False, Space:=False, other:=False
ActiveWorkbook.Close False
End Sub
FWIW, I wrote this routine independently, and then discovered
that Excel guru / author / developer John Walkenbach
had published something similar on his site, The Spreadsheet Page,
titled Clearing The Text To Columns Parameters.
See How do I add VBA in MS Office? for general information.
1
At any rate, thank you for the formatting assistance, though I'm just going to delete this since my excellent work here is apparently highly unappreciated. I spent some time to devise, test, and make concise a useful post. And anyone who is not just trolling to downvote would see that this IS a useful, high quality post. What is it with you downvoters? You're just cutting out valuable posts for those who actually WANT answers.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:18
1
There's no plagiarism. I made an informative comment that people who understand Excel may find beneficial; if not, just ignore it. In VBA a line preceded with an apostrophe is non executable code so you will suffer no damage by ignoring. Meanwhile, you can Google Walkenbach if you're an Excel user that is doesn't know his name; he is one of the most famous Excel gurus. Since I suspect you're dying to know, I wrote a routine on my own. Then I googled other solutions on the net in order to avoid wasting readers' time. I found Walkenbach's solution, but it had tradeoffs; ergo, my comment.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:23
Plagiarism and spam are big problems on Stack Exchange; so much so that we sometimes ask people to bend over backwards to preemptively deny it to avoid the appearance of impropriety. … … … … … … I know a bit about Excel; I have written 44 answers about it, with an average of almost 1.5 upvotes each. But I’m self-taught (with help from Super User and other good websites), so I’m not familiar with Walkenbach’s books, articles, software, etc. And while I doubt that there’s anybody exactly like me, I suspect that there are people like me to the extent that they know Excel and don’t know Walkenbach, … (Cont’d)
– G-Man
Jan 21 '18 at 19:13
(Cont’d) … so just dropping his name in a comment (and, yes, I know that a line preceded by an apostrophe in VBA is a comment) raises more questions than it answers. And we like posts on Stack Exchange to be self-contained; remarks like “you can Google __________ if you don’t know” are not well received. … … … … … … … … … … … … … … … … … … …… … … … TL;DR I’ve edited your answer again to be clearer, more complete, and more educational (without being snarky). You are of course free to rollback and/or further revise.
– G-Man
Jan 21 '18 at 19:13
FWIW, I didn’t downvote you, and in fact I just upvoted. … … … … … … … … … … … … … … … … … P.S. You don’t say where you live. I live in North America (hint: north of Mexico) and I would say that the US decommissioning of the analog television broadcast system was the most technologically destructive move in history. Otherwise I agree with most of what you say about Microsoft. But personal attacks are also discouraged here.
– G-Man
Jan 21 '18 at 19:13
|
show 5 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f586677%2fprevent-excel-from-converting-text-to-columns%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can change the layout or properties for the imported data at any time. On the Data menu, point to Get External Data, and then click either Edit Text Import or Data Range Properties.
If you select Edit Text Import, select the file that you imported originally, and then make changes to the external data in the Text Import Wizard.
By selecting Data Range Properties, you can set query definition, refresh control, and data layout options for the external data.
add a comment |
You can change the layout or properties for the imported data at any time. On the Data menu, point to Get External Data, and then click either Edit Text Import or Data Range Properties.
If you select Edit Text Import, select the file that you imported originally, and then make changes to the external data in the Text Import Wizard.
By selecting Data Range Properties, you can set query definition, refresh control, and data layout options for the external data.
add a comment |
You can change the layout or properties for the imported data at any time. On the Data menu, point to Get External Data, and then click either Edit Text Import or Data Range Properties.
If you select Edit Text Import, select the file that you imported originally, and then make changes to the external data in the Text Import Wizard.
By selecting Data Range Properties, you can set query definition, refresh control, and data layout options for the external data.
You can change the layout or properties for the imported data at any time. On the Data menu, point to Get External Data, and then click either Edit Text Import or Data Range Properties.
If you select Edit Text Import, select the file that you imported originally, and then make changes to the external data in the Text Import Wizard.
By selecting Data Range Properties, you can set query definition, refresh control, and data layout options for the external data.
answered Apr 24 '13 at 20:45
RuskesRuskes
330111
330111
add a comment |
add a comment |
If you are on a version of Excel that does not contain "Get External Data" under Data menu (such as Excel 2003, which is my primary version due to the anti-productive "upgrades" of Office 2007 through 2013), you can prevent the "helpful" behavior they force on you either by a few manual steps or by a macro (a macro is faster & easier, so I put it in my personal.xls):
- Add a workbook (or Ctrl+N)
- Type the letter A in cell
A1
- Click cell
A1
- Start “Text to Columns” (or Alt+D, E)
- Choose delimited (or Alt+D)
- Hit Enter
- Unselect every checkbox
- Click Finish (or Alt+F)
- Close the workbook; do not save.
Now the "helpful" behavior will be prevented when you paste again.
In code,
' Differs from Walkenbach in that he just populated A1 if empty, did this on A1, restored A1.
' This is better IFF you are allowed to add a workbook.
Sub FixAutomaticTextToColumns()
If ActiveSheet.ProtectContents Then MsgBox _
"BTW, the active sheet is protected. Consider unprotecting 'ere TextToColumns"
Workbooks.Add
Cells(1) = "A" 'Required, else TextToColumns will error
Cells(1).TextToColumns DataType:=xlDelimited, Tab:=False, semicolon:=False, _
comma:=False, Space:=False, other:=False
ActiveWorkbook.Close False
End Sub
FWIW, I wrote this routine independently, and then discovered
that Excel guru / author / developer John Walkenbach
had published something similar on his site, The Spreadsheet Page,
titled Clearing The Text To Columns Parameters.
See How do I add VBA in MS Office? for general information.
1
At any rate, thank you for the formatting assistance, though I'm just going to delete this since my excellent work here is apparently highly unappreciated. I spent some time to devise, test, and make concise a useful post. And anyone who is not just trolling to downvote would see that this IS a useful, high quality post. What is it with you downvoters? You're just cutting out valuable posts for those who actually WANT answers.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:18
1
There's no plagiarism. I made an informative comment that people who understand Excel may find beneficial; if not, just ignore it. In VBA a line preceded with an apostrophe is non executable code so you will suffer no damage by ignoring. Meanwhile, you can Google Walkenbach if you're an Excel user that is doesn't know his name; he is one of the most famous Excel gurus. Since I suspect you're dying to know, I wrote a routine on my own. Then I googled other solutions on the net in order to avoid wasting readers' time. I found Walkenbach's solution, but it had tradeoffs; ergo, my comment.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:23
Plagiarism and spam are big problems on Stack Exchange; so much so that we sometimes ask people to bend over backwards to preemptively deny it to avoid the appearance of impropriety. … … … … … … I know a bit about Excel; I have written 44 answers about it, with an average of almost 1.5 upvotes each. But I’m self-taught (with help from Super User and other good websites), so I’m not familiar with Walkenbach’s books, articles, software, etc. And while I doubt that there’s anybody exactly like me, I suspect that there are people like me to the extent that they know Excel and don’t know Walkenbach, … (Cont’d)
– G-Man
Jan 21 '18 at 19:13
(Cont’d) … so just dropping his name in a comment (and, yes, I know that a line preceded by an apostrophe in VBA is a comment) raises more questions than it answers. And we like posts on Stack Exchange to be self-contained; remarks like “you can Google __________ if you don’t know” are not well received. … … … … … … … … … … … … … … … … … … …… … … … TL;DR I’ve edited your answer again to be clearer, more complete, and more educational (without being snarky). You are of course free to rollback and/or further revise.
– G-Man
Jan 21 '18 at 19:13
FWIW, I didn’t downvote you, and in fact I just upvoted. … … … … … … … … … … … … … … … … … P.S. You don’t say where you live. I live in North America (hint: north of Mexico) and I would say that the US decommissioning of the analog television broadcast system was the most technologically destructive move in history. Otherwise I agree with most of what you say about Microsoft. But personal attacks are also discouraged here.
– G-Man
Jan 21 '18 at 19:13
|
show 5 more comments
If you are on a version of Excel that does not contain "Get External Data" under Data menu (such as Excel 2003, which is my primary version due to the anti-productive "upgrades" of Office 2007 through 2013), you can prevent the "helpful" behavior they force on you either by a few manual steps or by a macro (a macro is faster & easier, so I put it in my personal.xls):
- Add a workbook (or Ctrl+N)
- Type the letter A in cell
A1
- Click cell
A1
- Start “Text to Columns” (or Alt+D, E)
- Choose delimited (or Alt+D)
- Hit Enter
- Unselect every checkbox
- Click Finish (or Alt+F)
- Close the workbook; do not save.
Now the "helpful" behavior will be prevented when you paste again.
In code,
' Differs from Walkenbach in that he just populated A1 if empty, did this on A1, restored A1.
' This is better IFF you are allowed to add a workbook.
Sub FixAutomaticTextToColumns()
If ActiveSheet.ProtectContents Then MsgBox _
"BTW, the active sheet is protected. Consider unprotecting 'ere TextToColumns"
Workbooks.Add
Cells(1) = "A" 'Required, else TextToColumns will error
Cells(1).TextToColumns DataType:=xlDelimited, Tab:=False, semicolon:=False, _
comma:=False, Space:=False, other:=False
ActiveWorkbook.Close False
End Sub
FWIW, I wrote this routine independently, and then discovered
that Excel guru / author / developer John Walkenbach
had published something similar on his site, The Spreadsheet Page,
titled Clearing The Text To Columns Parameters.
See How do I add VBA in MS Office? for general information.
1
At any rate, thank you for the formatting assistance, though I'm just going to delete this since my excellent work here is apparently highly unappreciated. I spent some time to devise, test, and make concise a useful post. And anyone who is not just trolling to downvote would see that this IS a useful, high quality post. What is it with you downvoters? You're just cutting out valuable posts for those who actually WANT answers.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:18
1
There's no plagiarism. I made an informative comment that people who understand Excel may find beneficial; if not, just ignore it. In VBA a line preceded with an apostrophe is non executable code so you will suffer no damage by ignoring. Meanwhile, you can Google Walkenbach if you're an Excel user that is doesn't know his name; he is one of the most famous Excel gurus. Since I suspect you're dying to know, I wrote a routine on my own. Then I googled other solutions on the net in order to avoid wasting readers' time. I found Walkenbach's solution, but it had tradeoffs; ergo, my comment.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:23
Plagiarism and spam are big problems on Stack Exchange; so much so that we sometimes ask people to bend over backwards to preemptively deny it to avoid the appearance of impropriety. … … … … … … I know a bit about Excel; I have written 44 answers about it, with an average of almost 1.5 upvotes each. But I’m self-taught (with help from Super User and other good websites), so I’m not familiar with Walkenbach’s books, articles, software, etc. And while I doubt that there’s anybody exactly like me, I suspect that there are people like me to the extent that they know Excel and don’t know Walkenbach, … (Cont’d)
– G-Man
Jan 21 '18 at 19:13
(Cont’d) … so just dropping his name in a comment (and, yes, I know that a line preceded by an apostrophe in VBA is a comment) raises more questions than it answers. And we like posts on Stack Exchange to be self-contained; remarks like “you can Google __________ if you don’t know” are not well received. … … … … … … … … … … … … … … … … … … …… … … … TL;DR I’ve edited your answer again to be clearer, more complete, and more educational (without being snarky). You are of course free to rollback and/or further revise.
– G-Man
Jan 21 '18 at 19:13
FWIW, I didn’t downvote you, and in fact I just upvoted. … … … … … … … … … … … … … … … … … P.S. You don’t say where you live. I live in North America (hint: north of Mexico) and I would say that the US decommissioning of the analog television broadcast system was the most technologically destructive move in history. Otherwise I agree with most of what you say about Microsoft. But personal attacks are also discouraged here.
– G-Man
Jan 21 '18 at 19:13
|
show 5 more comments
If you are on a version of Excel that does not contain "Get External Data" under Data menu (such as Excel 2003, which is my primary version due to the anti-productive "upgrades" of Office 2007 through 2013), you can prevent the "helpful" behavior they force on you either by a few manual steps or by a macro (a macro is faster & easier, so I put it in my personal.xls):
- Add a workbook (or Ctrl+N)
- Type the letter A in cell
A1
- Click cell
A1
- Start “Text to Columns” (or Alt+D, E)
- Choose delimited (or Alt+D)
- Hit Enter
- Unselect every checkbox
- Click Finish (or Alt+F)
- Close the workbook; do not save.
Now the "helpful" behavior will be prevented when you paste again.
In code,
' Differs from Walkenbach in that he just populated A1 if empty, did this on A1, restored A1.
' This is better IFF you are allowed to add a workbook.
Sub FixAutomaticTextToColumns()
If ActiveSheet.ProtectContents Then MsgBox _
"BTW, the active sheet is protected. Consider unprotecting 'ere TextToColumns"
Workbooks.Add
Cells(1) = "A" 'Required, else TextToColumns will error
Cells(1).TextToColumns DataType:=xlDelimited, Tab:=False, semicolon:=False, _
comma:=False, Space:=False, other:=False
ActiveWorkbook.Close False
End Sub
FWIW, I wrote this routine independently, and then discovered
that Excel guru / author / developer John Walkenbach
had published something similar on his site, The Spreadsheet Page,
titled Clearing The Text To Columns Parameters.
See How do I add VBA in MS Office? for general information.
If you are on a version of Excel that does not contain "Get External Data" under Data menu (such as Excel 2003, which is my primary version due to the anti-productive "upgrades" of Office 2007 through 2013), you can prevent the "helpful" behavior they force on you either by a few manual steps or by a macro (a macro is faster & easier, so I put it in my personal.xls):
- Add a workbook (or Ctrl+N)
- Type the letter A in cell
A1
- Click cell
A1
- Start “Text to Columns” (or Alt+D, E)
- Choose delimited (or Alt+D)
- Hit Enter
- Unselect every checkbox
- Click Finish (or Alt+F)
- Close the workbook; do not save.
Now the "helpful" behavior will be prevented when you paste again.
In code,
' Differs from Walkenbach in that he just populated A1 if empty, did this on A1, restored A1.
' This is better IFF you are allowed to add a workbook.
Sub FixAutomaticTextToColumns()
If ActiveSheet.ProtectContents Then MsgBox _
"BTW, the active sheet is protected. Consider unprotecting 'ere TextToColumns"
Workbooks.Add
Cells(1) = "A" 'Required, else TextToColumns will error
Cells(1).TextToColumns DataType:=xlDelimited, Tab:=False, semicolon:=False, _
comma:=False, Space:=False, other:=False
ActiveWorkbook.Close False
End Sub
FWIW, I wrote this routine independently, and then discovered
that Excel guru / author / developer John Walkenbach
had published something similar on his site, The Spreadsheet Page,
titled Clearing The Text To Columns Parameters.
See How do I add VBA in MS Office? for general information.
edited Jan 21 '18 at 19:21
G-Man
5,713112360
5,713112360
answered Jan 20 '18 at 14:42
MicrosoftShouldBeKickedInNutsMicrosoftShouldBeKickedInNuts
748
748
1
At any rate, thank you for the formatting assistance, though I'm just going to delete this since my excellent work here is apparently highly unappreciated. I spent some time to devise, test, and make concise a useful post. And anyone who is not just trolling to downvote would see that this IS a useful, high quality post. What is it with you downvoters? You're just cutting out valuable posts for those who actually WANT answers.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:18
1
There's no plagiarism. I made an informative comment that people who understand Excel may find beneficial; if not, just ignore it. In VBA a line preceded with an apostrophe is non executable code so you will suffer no damage by ignoring. Meanwhile, you can Google Walkenbach if you're an Excel user that is doesn't know his name; he is one of the most famous Excel gurus. Since I suspect you're dying to know, I wrote a routine on my own. Then I googled other solutions on the net in order to avoid wasting readers' time. I found Walkenbach's solution, but it had tradeoffs; ergo, my comment.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:23
Plagiarism and spam are big problems on Stack Exchange; so much so that we sometimes ask people to bend over backwards to preemptively deny it to avoid the appearance of impropriety. … … … … … … I know a bit about Excel; I have written 44 answers about it, with an average of almost 1.5 upvotes each. But I’m self-taught (with help from Super User and other good websites), so I’m not familiar with Walkenbach’s books, articles, software, etc. And while I doubt that there’s anybody exactly like me, I suspect that there are people like me to the extent that they know Excel and don’t know Walkenbach, … (Cont’d)
– G-Man
Jan 21 '18 at 19:13
(Cont’d) … so just dropping his name in a comment (and, yes, I know that a line preceded by an apostrophe in VBA is a comment) raises more questions than it answers. And we like posts on Stack Exchange to be self-contained; remarks like “you can Google __________ if you don’t know” are not well received. … … … … … … … … … … … … … … … … … … …… … … … TL;DR I’ve edited your answer again to be clearer, more complete, and more educational (without being snarky). You are of course free to rollback and/or further revise.
– G-Man
Jan 21 '18 at 19:13
FWIW, I didn’t downvote you, and in fact I just upvoted. … … … … … … … … … … … … … … … … … P.S. You don’t say where you live. I live in North America (hint: north of Mexico) and I would say that the US decommissioning of the analog television broadcast system was the most technologically destructive move in history. Otherwise I agree with most of what you say about Microsoft. But personal attacks are also discouraged here.
– G-Man
Jan 21 '18 at 19:13
|
show 5 more comments
1
At any rate, thank you for the formatting assistance, though I'm just going to delete this since my excellent work here is apparently highly unappreciated. I spent some time to devise, test, and make concise a useful post. And anyone who is not just trolling to downvote would see that this IS a useful, high quality post. What is it with you downvoters? You're just cutting out valuable posts for those who actually WANT answers.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:18
1
There's no plagiarism. I made an informative comment that people who understand Excel may find beneficial; if not, just ignore it. In VBA a line preceded with an apostrophe is non executable code so you will suffer no damage by ignoring. Meanwhile, you can Google Walkenbach if you're an Excel user that is doesn't know his name; he is one of the most famous Excel gurus. Since I suspect you're dying to know, I wrote a routine on my own. Then I googled other solutions on the net in order to avoid wasting readers' time. I found Walkenbach's solution, but it had tradeoffs; ergo, my comment.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:23
Plagiarism and spam are big problems on Stack Exchange; so much so that we sometimes ask people to bend over backwards to preemptively deny it to avoid the appearance of impropriety. … … … … … … I know a bit about Excel; I have written 44 answers about it, with an average of almost 1.5 upvotes each. But I’m self-taught (with help from Super User and other good websites), so I’m not familiar with Walkenbach’s books, articles, software, etc. And while I doubt that there’s anybody exactly like me, I suspect that there are people like me to the extent that they know Excel and don’t know Walkenbach, … (Cont’d)
– G-Man
Jan 21 '18 at 19:13
(Cont’d) … so just dropping his name in a comment (and, yes, I know that a line preceded by an apostrophe in VBA is a comment) raises more questions than it answers. And we like posts on Stack Exchange to be self-contained; remarks like “you can Google __________ if you don’t know” are not well received. … … … … … … … … … … … … … … … … … … …… … … … TL;DR I’ve edited your answer again to be clearer, more complete, and more educational (without being snarky). You are of course free to rollback and/or further revise.
– G-Man
Jan 21 '18 at 19:13
FWIW, I didn’t downvote you, and in fact I just upvoted. … … … … … … … … … … … … … … … … … P.S. You don’t say where you live. I live in North America (hint: north of Mexico) and I would say that the US decommissioning of the analog television broadcast system was the most technologically destructive move in history. Otherwise I agree with most of what you say about Microsoft. But personal attacks are also discouraged here.
– G-Man
Jan 21 '18 at 19:13
1
1
At any rate, thank you for the formatting assistance, though I'm just going to delete this since my excellent work here is apparently highly unappreciated. I spent some time to devise, test, and make concise a useful post. And anyone who is not just trolling to downvote would see that this IS a useful, high quality post. What is it with you downvoters? You're just cutting out valuable posts for those who actually WANT answers.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:18
At any rate, thank you for the formatting assistance, though I'm just going to delete this since my excellent work here is apparently highly unappreciated. I spent some time to devise, test, and make concise a useful post. And anyone who is not just trolling to downvote would see that this IS a useful, high quality post. What is it with you downvoters? You're just cutting out valuable posts for those who actually WANT answers.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:18
1
1
There's no plagiarism. I made an informative comment that people who understand Excel may find beneficial; if not, just ignore it. In VBA a line preceded with an apostrophe is non executable code so you will suffer no damage by ignoring. Meanwhile, you can Google Walkenbach if you're an Excel user that is doesn't know his name; he is one of the most famous Excel gurus. Since I suspect you're dying to know, I wrote a routine on my own. Then I googled other solutions on the net in order to avoid wasting readers' time. I found Walkenbach's solution, but it had tradeoffs; ergo, my comment.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:23
There's no plagiarism. I made an informative comment that people who understand Excel may find beneficial; if not, just ignore it. In VBA a line preceded with an apostrophe is non executable code so you will suffer no damage by ignoring. Meanwhile, you can Google Walkenbach if you're an Excel user that is doesn't know his name; he is one of the most famous Excel gurus. Since I suspect you're dying to know, I wrote a routine on my own. Then I googled other solutions on the net in order to avoid wasting readers' time. I found Walkenbach's solution, but it had tradeoffs; ergo, my comment.
– MicrosoftShouldBeKickedInNuts
Jan 21 '18 at 15:23
Plagiarism and spam are big problems on Stack Exchange; so much so that we sometimes ask people to bend over backwards to preemptively deny it to avoid the appearance of impropriety. … … … … … … I know a bit about Excel; I have written 44 answers about it, with an average of almost 1.5 upvotes each. But I’m self-taught (with help from Super User and other good websites), so I’m not familiar with Walkenbach’s books, articles, software, etc. And while I doubt that there’s anybody exactly like me, I suspect that there are people like me to the extent that they know Excel and don’t know Walkenbach, … (Cont’d)
– G-Man
Jan 21 '18 at 19:13
Plagiarism and spam are big problems on Stack Exchange; so much so that we sometimes ask people to bend over backwards to preemptively deny it to avoid the appearance of impropriety. … … … … … … I know a bit about Excel; I have written 44 answers about it, with an average of almost 1.5 upvotes each. But I’m self-taught (with help from Super User and other good websites), so I’m not familiar with Walkenbach’s books, articles, software, etc. And while I doubt that there’s anybody exactly like me, I suspect that there are people like me to the extent that they know Excel and don’t know Walkenbach, … (Cont’d)
– G-Man
Jan 21 '18 at 19:13
(Cont’d) … so just dropping his name in a comment (and, yes, I know that a line preceded by an apostrophe in VBA is a comment) raises more questions than it answers. And we like posts on Stack Exchange to be self-contained; remarks like “you can Google __________ if you don’t know” are not well received. … … … … … … … … … … … … … … … … … … …… … … … TL;DR I’ve edited your answer again to be clearer, more complete, and more educational (without being snarky). You are of course free to rollback and/or further revise.
– G-Man
Jan 21 '18 at 19:13
(Cont’d) … so just dropping his name in a comment (and, yes, I know that a line preceded by an apostrophe in VBA is a comment) raises more questions than it answers. And we like posts on Stack Exchange to be self-contained; remarks like “you can Google __________ if you don’t know” are not well received. … … … … … … … … … … … … … … … … … … …… … … … TL;DR I’ve edited your answer again to be clearer, more complete, and more educational (without being snarky). You are of course free to rollback and/or further revise.
– G-Man
Jan 21 '18 at 19:13
FWIW, I didn’t downvote you, and in fact I just upvoted. … … … … … … … … … … … … … … … … … P.S. You don’t say where you live. I live in North America (hint: north of Mexico) and I would say that the US decommissioning of the analog television broadcast system was the most technologically destructive move in history. Otherwise I agree with most of what you say about Microsoft. But personal attacks are also discouraged here.
– G-Man
Jan 21 '18 at 19:13
FWIW, I didn’t downvote you, and in fact I just upvoted. … … … … … … … … … … … … … … … … … P.S. You don’t say where you live. I live in North America (hint: north of Mexico) and I would say that the US decommissioning of the analog television broadcast system was the most technologically destructive move in history. Otherwise I agree with most of what you say about Microsoft. But personal attacks are also discouraged here.
– G-Man
Jan 21 '18 at 19:13
|
show 5 more comments
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f586677%2fprevent-excel-from-converting-text-to-columns%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown