xtremaxs Posted January 22, 2009 Posted January 22, 2009 Has anyone figured out how to perform delimited TextToColumns on a comma?
BrettF Posted January 22, 2009 Posted January 22, 2009 Means nothing. I take it you mean StringSplit? Cheers, Brett Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
xtremaxs Posted January 22, 2009 Author Posted January 22, 2009 No. Peforming a texttocolumn by comma when manipulating excel from autoit. I have a CSV file and I need to perform texttocolumns to parse it out.
BrettF Posted January 22, 2009 Posted January 22, 2009 Well that is where explaining exactly what your problem is helps. Have you had a look at Excel.au3? Also, please post your code, it allows us to help much easier. Brett Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
xtremaxs Posted January 22, 2009 Author Posted January 22, 2009 (edited) I figured people would automatically know what Text To Columns means and yea I check the Excel.au3. It doesn't have anything related to TextToColumns in it. I check this posting http://www.autoitscript.com/forum/index.php?showtopic=34302&hl=texttocolumns&st=330 but it doesnt work. As far as code, all I have is the code that opens the excel document and selects column A. CODE$oExcel = ObjCreate("Excel.Application") With $oExcel .Visible = 1 .Workbooks.Open(@DesktopDir & "\*********.xls", Default, False) .ActiveWorkbook.Sheets(1).Select() EndWith $oExcelWs1 = $oExcel.ActiveWorkbook.Sheets(1) $oExcel.Range("A:A").Select Edited January 22, 2009 by xtremaxs
creaciones Posted May 16, 2019 Posted May 16, 2019 do you succeded? I also want to transform a csv file with Excel's TextToColumns function using Autoit commands. Has anyone succesfully done it yet?
BrewManNH Posted May 16, 2019 Posted May 16, 2019 This thread is 10 years old and the OP hasn't been back in almost 7 years, who exactly are you expecting to answer you? BTW, try using the forum search, there's probably a dozen threads on this. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now