Macro To Selectively Import Fixed Length Data Into Excel

Feb 23, 2014

I am attempting to modify VBA code from [URL] .....

The section of the code I want to modify is below dealing with importing selective text. The original function returned a "False" if the line contained a keyword specified in the Array function. I have reworked it so that it shows a "True" if the line contains a keyword specified in the Array function.

My only problem is that it only does it when the keyword appears in the beginning of the line, as it uses the "Left" operator in looking at line. How do I configure the function so that it returns a "True" if the keywords appears anywhere in the line?

View 4 Replies


ADVERTISEMENT

Importing Fixed Length Text Into Excel?

Apr 15, 2014

I am using the code below to import a fixed-length text file into Excel. As the macro is written, it imports starting at the first line of the text file. How do i tell it to start importing at line 1000 and above?

View 2 Replies View Related

Fixed String Length

Dec 1, 2009

I am trying to create a string of text that grabs info from other cells, which is easy so for example

=A1&A2&A3

would grab all the info from the 3 cells and merge them to create a string, but what I want to do is create a prefixed length.

Lets say A1, A2 and A3 would equal 10 characters in total but B1, B2 and B3 would equal 7 characters, these would be different lengths. so for a visual description I would like them to appear like this

At the moment

01MAIN-HELLO
01DESSERT-HELLO WORLD

Would like

01MAINXXX-HELLO
01DESSERT-HELLO WORLD

This would make both strings the same length and would make it easier for me to export to a custom file that needs a certain length prefix.

View 9 Replies View Related

Pad Cells To Fixed Length

Feb 19, 2007

I need to expand my columns to different character widths (fill with blanks) for an Import into an other program, I state the No. of characters in that column and Import. Trim does the complete opposite to what I require, does anybody know if the function exists and if so the syntax for it.

View 4 Replies View Related

Split Text Into Fixed Length Columns

Jul 20, 2012

I have 5 columns with data in each

I want to create a 6th column that looks to the columns on the left with data in ti and concatenates all data in the 5 columns and puts it into one cell in the 6th column however put a space between each break of data so that it can be distinguished which bit of data was in what column previously.

The challenge is the new 6th column can only contain 30 characters - When it exceeds 30 characters then create a 7th column and put the rest of data in the 7th column, again the 7th column can only have 30 characters so if exceeds this then put the remaining characters in a 8th column

There will never be more than a total of 90 characters in the original 5 columns so there will only need to be scope for a maximum of 3 additional columns

So for example

Column A had two words in it that totaled 20 characters (the space between the two words is also counted as a character)
Column B had two words in it that totaled 20 characters (the space between the two words is also counted as a character)
Column C had a word that contained 10 characters
Column D had a word that contained 5 characters
Column E had a word that contained 10 characters

Then the result would be

Column F would only have the data originally held in Column A (because it can't include Column B's data as this would exceed the 30 characters)
Column G would have data that was originally held in column B and column C - with a space between B and C data
Column H would have data that was originally held C, D and E - with a space between C, D and E data

Another point to consider is if in one of the orginal 5 columns had say 3 words in it and lets say the 3rd word is the word that exceeds the 30 character limit, then the whole of the third word is to be carried oved to the next new column, I can't have words cut in hlaf with one half in Column 'F' and the other half in Column 'H' for example.

View 1 Replies View Related

Macro/vba: Grouping Data From Csv Then Import Into Excel

Aug 6, 2008

I have a data file saved as csv like this:

Risk Postcode,Effective Year Month,Written Premium,Written Units,Earned Premium,Earned Units,Claim Cost,Claim Count,Glass Manufacture Decade,
2600,200507,0,0,5.7354,0.0765,0,0,1920,
2600,200508,0,0,5.7354,0.0765,0,0,1920,
2600,200509,0,0,7.1693,0.09563,0,0,1920,
2700,200510,0,0,5.7354,0.0765,0,0,1920,
2700,200507,0,0,5.7756,0.0885,0,0,1930

what i want to do is to group the record with the same postcode together and just return one record for each postcode in excel.

so the output will have the postcode, the sum of written premium, written units.

I understand i can use Access to do it, but I want just to use excel for this task.

View 9 Replies View Related

Can VBA Be Used To Do A Fixed Widths Import Of A Txt File?

Mar 12, 2007

I have lots of files I need to read every day. I need to read them in as fixed width - EX: column A is 1-8, column B is 9-12, column C is 13-22, etc. Is there a way to create a VBA macro or something so that I don't have to point and click to draw lines every day when I read in these files?

View 9 Replies View Related

Import Fixed Width Text File

Apr 28, 2008

I am having a problem importing fixed width text files with VBA. I created a user form for a dept to import a number of reports we get as text files into Excel. I imported each line into 1 cell (Column A) in Excel and then used mid functions to split out the columns. Everything works fine on my PC. However, when I use other PCs to import the same files (either off the same shared drive or the PC hard drive) the columns are not splitting in the correct places. Does anybody know what could cause this. Since the columns are splitting based off a fixed number of characters, I'm assuming Excel is somehow distorting a character count while opening the text file. I did notice that if I try to import text files saved on one of our shared drives, they do not import correctly on my PC either. However, if I copy and save the same text file to any of the other shared drives or my PC, it imports with no problems.

View 2 Replies View Related

Importing Fixed Width Text Data Into Excel

Aug 21, 2014

How to insert the column dividers manually--for importing a fixed-width text file into excel? The files I'm having to import consist of dozens and dozens of columns.

View 3 Replies View Related

Macro To Merge And Center Varied Range Of Data In Fixed Row

Jun 10, 2014

See attached the example worksheet. I am wondering if there is a way to write a macro that will change data from individual strings within a cell row to merged and centre data for that set of data. The issue is the data in the row will be varied i.e. sometimes there will be 20 x 2013 other times there may be 22 X 2013 etc. however, the data will always be fixed in the same row on the worksheet.

At the moment the best I have is a recorded macro, which really doesn't work too great and I end up fixing it constantly.

View 2 Replies View Related

Macro-Copy&Paste Fixed Data Ranges Into Last Empty Cell Of Specific Column

Apr 27, 2009

I have rather large Excel file that spans around 245 columns & has multiple users responsible for certain columns. Columns are chunked to provide data about a specific group. Every 72 hours, I need to provide to managers what’s currently on this file in a specific summary format.

I’ve recorded a macro that gets me half way there. Here’s where I’m clueless. After my macro deletes unnecessary columns, what remains are the columns for “Main Data” group + each of the 5 “Business” groups (Investors, Lawyers, Credit, Finance, and Support) which would have identical column headings.

(1) Name (2) Address (3) ID# (4) Control#

Furthermore, for each of the 5 “Business” groups, there are 9 slots (ie- a user can enter up to 9 unique entries for a particular group.)

Example- The Investor group contains 9 slots. Each slot will contain the 4 columns mentioned above. So there are 46 slots in total – 1 for Main Data, 45 (5 groups x 9 slots) for Business groups.

MAIN DATA (columns A-D)
Investor1 (columns E-H)… Investor2 (columns I-L)… Investor9 (columns AK-AN)
Lawyer1… Lawyer9
Compliance1… Compliance9
Finance1… Finance9
Support1… Support9

MY PROBLEM: I need a macro to now cut & paste all data from each of the 45 Business groups slots & then paste at the bottom of the MAIN DATA slot.

The final file would be 4 columns (as listed above) wide. Data from each of the 45 business group slots would be one below the other- all of it underneath the data in the Main Data group.

I attempted to record a macro where I’m copying a section’s data range starting from row2 to row4000 (I know there will never be 4000 entries. I did this just to ensure that all future data would be captured) then pasting that after the last entry in the Main Data.

Example- I’d copy data from Investor1 slot(starting at column E2-H2) & go about 4000 rows down. Then I’d press CTRL+Down Arrow key in column A & then click the down arrow one time to take me into 1st empty cell where I would paste my copied data. I was going to repeat this process for the remaining 44 slots.

I’ve added some extra entries to test the macro & the problem is that the recorded macro is pasting data in specific cell location in column A instead for looking for the 1st empty cell in column A & then pasting the copied data.

So far I've gone thought the net & tried to paste in a few VBA posts/tips that I thought would work. Here's what I have so far from tinkering around. I need someone to tell me what to replace the xxxxxxx line with. This would be the language to tell Excel to paste copied data range into the first blank cell in column A. I've gone thought the net & tried to paste in a few VBA posts/tips that I thought would work.

Here's what I have so far from tinkering around. I need someone to tell me what to replace the xxxxxxx line with. This would be the language to tell Excel to paste copied data range into the first blank cell in column A.

Sub transposedata()
Sheets("ConsolidatedYTDReport").Select
Range("E2:H4202").Select
Selection.Copy
XXXXXXXXXXXX
ActiveSheet.Paste
End Sub

View 10 Replies View Related

Excel 2007 :: Import Data From Worksheet Into Another And Group Data Into Sections

Mar 2, 2012

I want to be able to run a macro that will export some of the data from a worksheet called Generated Report into another worksheet called Matrix. The data will be taken Generated REport and grouped into sections of the worksheet. These sections will be defined by the BRID value.

The Data that i want to export will be from the first 5 columns within the Generated Report(note there are other columns which data is not required from).

The following columns will be exported from Generated Report -

BRID,Requirement, Bug Description, Bug ID and Alt Bug ID.

BRIDRequirement Bug DescriptionBUG ID Alt Bug ID
PQ115 PQ115-Login Bug Description text xihllloloj43712 123
PQ116PQ116-Landing Bug Description text ghghghgoot 43713 126

For Matrix

The data will be imported into Matrix worksheet into the following columns as part of the row headings

- Requirement, Description, Bug ID and VF Bug ID.There will also be other columns (outlined below) which i will use to manually enter data

The data will be grouped and imported into the relevant section by its BRID eg PQ115, PQ116 etc.

I want each section (marked by BRID number)to be separated by row headings.

These row headings are to be generated after populating all data within each BRID number.

When the data has been populated in each row there is a column called 'Status' which contains drop down list boxes which can be assigned.

The default status will be set to 'To Do'. The complete row headings are displayed with Output from Generated Report underneath

BRID Priority Requirment Description BugID Alt Bug ID PC UpdateNotes Actual Result Type of DEfect Test Status Tested by
PQ115 PQ115-Login Bug Description text xihllloloj43712 123 To Do

BRID Priority Requirment Description BugID Alt Bug ID QC UpdateNotes Actual Result Type of DEfect Test Status Tested by
PQ116 PQ116-Landing Bug Description text ghghghgoot43713 126 To Do

So far the macro that i have been using allows me to locate the data for each specific BRID in Generated Report and copy into the corresponding BRID section within the Matrix. I have to repeat this step for each new BRID and i want to be able to whole automate this process.

View 5 Replies View Related

Excel Macro To Import Contacts And Place Them On Particular Sheet?

May 2, 2014

I have come up the code below. It imports contact information from Outlook contacts in a contact folder called Private Contacts. The below code has been copied and modified from this forum.

As it stands the macro creates a new workbook and places the data on that. What I need it to do is create a new worksheet with the name of private compare on the active workbook and then place the data on that worksheet.

[Code] .....

View 6 Replies View Related

Excel Macro Referencing A Variable File Name To Import

Oct 30, 2008

I have this Macro for Excel which imports 1 file C:datafilesuser1-data-1.txt into cell E52:

View 6 Replies View Related

Import Word Data To Excel?

Apr 16, 2014

I would like to extract some text from a word file and transfert it into an excel spreadsheet.
My text is always presented in the same way. First there is a line with some data (see exemple bellow). I have no problem to extract them using the macro bellow even it's not perfect.

My problem is on the main text. I weed to keep the format or at least the different paragraphes as when you copy text in word and past it in the formula bar (or press F2).

Here is an exemple of my word file

Code : XXX1- Abrege : DGS45 - Type : D - ADICAP : PHXT5847

TITRE
Text Paragraph 1
Text Paragraph 2

[Code].....

View 4 Replies View Related

Import Excel Data To Workbook

Apr 23, 2012

I would like to import all data from a workbook (only 1 sheet), which the user must select from a file dialog, into a spesific sheet in the active workbook.

View 5 Replies View Related

Import Website Data Into Excel (Scrapping Of Data)

Jun 20, 2014

I have a tedious task of copy/paste from our website. have a look at below sample data. I have around 1500 rows of data like this.

Sheet1
A
B

[Code]....

Column A has input data which i need to copy and paste in a web form. Column B will have results scrapped form webpage[ URL]. This webpage will need login details

If a code can be written which take value form column A of spreadsheet and paste in webpage like shown in above image and hit search button. Next webpage will be loaded with number of results like shown in below. Take the number of results and paste in column B of spreadsheet.

View 1 Replies View Related

Import Data From Text Files Into Excel

Nov 11, 2011

I found a good piece of code to import data from text files into excel. they are delimited

I keep getting an overflow error, and then I get the error that the file is already open?

Option Explicit

Sub OpenTextFiles()
Dim strFiles() As String
Dim strFName As String
Dim strFPath As String
Dim IntFile As Integer
Dim sep As String
'define the directory
strFPath = "C:UsersXXXXXDesktopHOLDINGTEXT into Excel"

[Code] ..........

View 9 Replies View Related

Excel 2007 :: Import Data Through Button

Nov 26, 2011

I want to import data from 1 excel sheet to another sheet in excel 2007 by clicking the button which i was created through.

Developer>insert>forum control>button

View 9 Replies View Related

Excel 2013 :: Cannot Import Data Into ASP File

Feb 5, 2014

I am using Excel 2013, and I am following the example here: VBScript Scripting Techniques: Read Excel files without using Excel that reads in Excel data as an ADO record set to a classic ASP file using VBScript. I am not able to import all the Excel data successfully, and I need to know what I'm doing wrong. Note that in all these samples cell A1 is the heading text "Column1" and the main data starts on cell A2 (consistent with the example code).

When my source Excel data looks like the following:

Code:
Column1
1
2
3
4
5
6
7
X
9
10

It imports everything OK. However, if I move the X to the next row:

Code:
Column1
1
2
3
4
5
6
7
8
X
10
...the "X" cell gets imported as an empty string. So the imported array looks like this:

Code:
arrSheet[0][0]: Column1
arrSheet[1][0]: 1
arrSheet[2][0]: 2
arrSheet[3][0]: 3

[Code] ....

But if I add another X to an earlier row in the source worksheet, like so:

Code:
Column1
1
2
3
4
5
X
7
8
X
10
...this gets imported OK.

View 3 Replies View Related

MS Access Data Import Into An Excel Worksheet.

Oct 7, 2007

I currently have a userform, and on commandbutton_click, it performs
the following code that adds a column in a access table to a combobox(cbList)


Private Sub CmdName_Click()
Dim rstName As ADODB.Recordset
Dim strClientDatabase As String, strConnectionString As String
strClientDatabase = ActiveWorkbook.Path & "9001.mdb"......

After its listed on the combo box, upon commandbutton_click on another button, i wish to extract a particular record, based on the selection made on the combobox(cbList). This is where im having problems caused i have no idea how to do so. I just want it to extract the particular record row, based on cbList, and insert it into range A100:D100 in a particular worksheet. It is then updated and added to a listbox which ive already done the coding for, and with another button click it would add the details in the listbox into the appropriate location i wish to.. The only place im stuck is with extracting the data from access into a A100:D100 range in any worksheet. what ive come up with, but is incomplete is :


Private Sub CmdImport_Click()
Dim adoRS As ADODB.Recordset
Dim strSQL As String
Dim strClientDatabase As String, strConnectionString As String
strClientDatabase = ActiveWorkbook.Path & "9001mdb"
.........

View 9 Replies View Related

How To Import Specific Data From A Txt File Into Excel

May 17, 2009

importing some selective data from txt file to excel. Only the following rows I need to pull out from text file into the Excel i.e. Project row, installation row, and two rows immediately below the installation row. This is my logical procedure..

1. Macro look for the rows that contains the word "PROJECT"

2. Open an excel file

3. Pull the row from txt file to this new excel file.

4. Macro look for the rows that contains the word "INSTALLATION"

3. Pull that row with INSTALLATION AS WELL AS Two rows immediately below the INSTALLATION row.

View 9 Replies View Related

Excel 2010 :: Macro To Import Multiple Word Tables Into Worksheet

Jun 5, 2014

I am trying to take multiple tables from a Word document and import them into an Excel worksheet. Currently I have found two versions that when combined, could yield what I am looking for. The first one imports the table's data from Word, but does not maintain formatting of the table (font, colors, rows/columns etc.):

The next code maintains formatting, but only imports/pastes one table:

[Code] .........

For the second one, I do not like the fact that it is calling a specific Workbook to paste into. If I could somehow maintain the ability to import/past multiple tables while keeping formatting that would be perfect. An extra bonus would be to import each table within the Word document into individual Worksheets in Excel. I am also using Office 2010.

References: [URL] .........

VBA - How to preserve source formatting while copying data from word table to excel sheet using VB macro? - Stack Overflow

View 14 Replies View Related

Macro To Import TXT Data

Aug 24, 2008

I have a TXT file that is properly format for a nice print out but not in any fashion to work in an excel or access file.

My txt file looks something like this
Header info Row 1
Header info Row 2
Header info Row 3
ACCT# Value Descripton ~ Part number
Customer Name ~ Vendor Name
Customer add1 ~ Vend add1
Customer add2 ~ Vend add2
Custom city, st, zip ~ vend city, st, zip

Repeat about 5 or 6 more entries
do a page bread and repeat the headers and then 5 or 6 more entries

I want to automatically copy the entries and place the data into Row 1 of Excel starting in Column 1 through Column 12

Then the 2nd entry would be in row 2 etc

View 9 Replies View Related

Error Formatting When Import Data From Google Into Excel

Feb 16, 2013

I use Google Spreadsheet to feed some data online. Later on I use Excel to import this data that it is hosted at Google to do a better handling (reports, charts, etc). However when I import the data from Google, the contents of 1 row is splitted on 4 in Excel.

Are there any way to keep the same formatting from the original ?

[URL]

View 5 Replies View Related

Open TSV File In Excel - Import Data From CSV To Text

Jan 4, 2014

When I export data from .csv or .tsv file to .excel file then all the preceding zero's disappear and the code 0010 display's like 10.

I know I can manually import data from csv to text(option "fromtext" in excel) but i want to do it automatically.

View 1 Replies View Related

Import Data From Selected Excel File Into A Specified Worksheet

Mar 17, 2009

I have a workbook which, amongst several worksheets, also includes 12 blank worksheets (one for each month of the year).

Is it possible to have a macro that will (a) first prompt the user to select an excel file to import (the excel files to import are provided each month and only have one tab); then (b) select which worksheet to import the data (values only) from the selected file into.

View 6 Replies View Related

Excel 2007 :: Arranging Data From Import Sheet?

Oct 7, 2011

I am importing data into an Excel 2007 worksheet from an online form. They are answers to 30 questions for up to 250 respondents. I was expecting to import one row of data for each respondent however the data is importing in a step like manner as below

Q1Q2Q3
AF169856 Y
AF169856N
AF169856N
AF145723 N
AF145723Y
AF145723N

Any formula/solution to bring all of these responses into one line for each respondent ?

View 1 Replies View Related

Excel 2007 :: Import Data From TXT File And Analyze?

Dec 23, 2011

I'm using excel 2007 and I'm trying to import data from a .txt file into excel and analyze the data. One of the columns in the .txt file contains descriptions for each row and its in multiple rows. Is there a way to import the .txt file so that it will show a description for each row in one cell?

I imported the data into excel but the issue is the description.

View 3 Replies View Related

Excel 2010 :: Disable Import Data Dialog Box?

Apr 23, 2012

Is it possible to disable Import Data Dialog box in Excel 2010? I have a web query file. I want to copy its content and paste in a new worksheet under an existing workbook. I have a macro which does that but I get Import Data dialog box when I tried to paste the copied content from test.iqy file to new sheet. The dialog box has

Select how you want to view this data in your workbook?
By default Table is selected, which is fine.

Where do you want to put the data?
By default New workbook is selected. I want to have Existing worksheet selected by default.

Is there a way to set these requirements into vba code and make this dialog box not appear at all?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved