+ Reply to Thread
Results 1 to 43 of 43

Importing CSV as table

  1. #1
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Importing CSV as table

    Hi,

    i have data in csv and want to import databodyrange (replace) to table in my main workbook.
    How can i do this?

    csv file:
    Screenshot_27.png

    Main Workbook:
    Screenshot_28.png

    I think that i have to somehow:
    1. open csv file
    2. transform data to a table
    3. get table databody range
    4. Copy to main workbook

    how can i do this? Maybe there is a built in method to import csv as table?

    Please help,
    Jacek
    Attached Files Attached Files

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    Use PowerQuery (Get & Transform - Get Dtaa - From CSV/Text).
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    hi Ali,

    thanks. Hmm but i will have to loop through each csv table and use them in workbook. It is possible with PQ to loop through folder?
    plus i have formulas in table...like here:

    Screenshot_29.png

    hmm.
    Jacek
    Last edited by jaryszek; 07-01-2019 at 07:16 AM.

  4. #4
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831
    Quote Originally Posted by jaryszek View Post
    how can i do this? Maybe there is a built in method to import csv as table?
    Yes that's easy just activating the Macro Recorder then Import from text in the Data menu
    (see QueryTable in VBA inner help) and once loaded, the range can be transformed as an Excel table …

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    Quote Originally Posted by jaryszek View Post
    hi Ali,

    thanks. Hmm but i will have to loop through each csv table and use them in workbook. It is possible with PQ to loop through folder?
    plus i have formulas in table...like here:
    Yes, you can import from a folder instead of an individual file, then merge the imported tables.

    What you do is create the query result, then add your formulae to that table, which can then be refreshed moving forward.

    Looks like Marc has given you a VBA option above, however.

  6. #6
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Re: Importing CSV as table


    But PowerQuery is easier for a non programmer …

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    Jaryszek is learning how to programme, so will probably want to go your way. Please remember, Marc, that you, too, were once a learner. There are not just programmers and non-programmers. You don't seem particularly tolerant of people wanting to learn VBA.

  8. #8
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow


    As it was just an advice - he has to make its choice - and
    I'm tolerant even for people creating several threads without showing any started work …

  9. #9
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    Well, you don't appear to be, and there is absolutely no rule against theoretical threads. You have made some very pointed comments in some of those threads, which were not needed (indeed, one of your comments was reported by another member only yesterday). Maybe you don't realise how you are coming across, and I realise that English isn't your first language, so that may be part of the problem.

  10. #10
    Valued Forum Contributor Haluk's Avatar
    Join Date
    02-14-2019
    Location
    Turkiye
    MS-Off Ver
    2010 - 64 Bit on Windows-11 (22 H2) 64 Bit
    Posts
    1,149

    Re: Importing CSV as table

    One of the VBA approaches may be as the following...... Paste the following code into your "main workbook" and run the code.

    Please Login or Register  to view this content.
    .

  11. #11
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow


    Another ways requesting a 'single codeline' to open a delimited text file are the methods Workbooks.Open & Worbooks.OpenText
    at very beginner level …
    Last edited by Marc L; 07-01-2019 at 08:39 AM.

  12. #12
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    Marc L please provide example.
    How this simple codeline looks like and how to create listobject from this or maybe it will be not necessary?

    Ali thank you very much,

    Jaryszek is learning how to programme, so will probably want to go your way. Please remember, Marc, that you, too, were once a learner.
    hmm i like your solution. How can i loop through folder and take tables?
    I see few issues. What if i will have formula in one column? How PQ will skip this ? It is possible?
    formula:
    =INDEX(INDIRECT("t_DataCentersSource[LocationID]");MATCH([@RegionName];INDIRECT("t_DataCentersSource[DataCenter]");0))
    is in column C.
    I added worksheet with Table2 into Main.xlsx.
    And in TableList i added tables list which i want to be consumed by PowerQuery - so only these ones on the list:

    Screenshot_30.png

    and second issue: it is possible to block user before refreshing power query?
    I will refresh tables by my own and do not want user to do it by his own.

    Maybe somehow after reading data unlink table? and after that link tables while loading ?

    Haluk - your code works perfect - thank you.
    But it will not work if i will have formula in main workbook table. How your code can avoid this?
    Maybe changing SQL statement ?
    Or looping through each table's column?
    Goal is to skip importing the column where already formula is. So in this case i know that this is column C.

    Best,
    Jacek
    Attached Files Attached Files
    Last edited by jaryszek; 07-01-2019 at 11:07 AM.

  13. #13
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    I will call on Olly to chip in here - he is the PQ guru.

    and second issue: it is possible to block user before refreshing power query?
    Not sure - the refresh option is on the Data ribbon.

  14. #14
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: Importing CSV as table

    This will combine all CSV files in a folder:

    Please Login or Register  to view this content.
    To prevent a query being refreshed, simply protect the worksheet on which the query is materialised.
    Last edited by Olly; 07-01-2019 at 11:43 AM.
    let Source = #table({"Question","Thread", "User"},{{"Answered","Mark Solved", "Add Reputation"}}) in Source

    If I give you Power Query (Get & Transform Data) code, and you don't know what to do with it, then CLICK HERE

    Walking the tightrope between genius and eejit...

  15. #15
    Valued Forum Contributor Haluk's Avatar
    Join Date
    02-14-2019
    Location
    Turkiye
    MS-Off Ver
    2010 - 64 Bit on Windows-11 (22 H2) 64 Bit
    Posts
    1,149

    Re: Importing CSV as table

    Quote Originally Posted by jaryszek View Post
    .....
    ...
    ..

    Haluk - your code works perfect - thank you.
    But it will not work if i will have formula in main workbook table. How your code can avoid this?
    Maybe changing SQL statement ?
    ....
    ..
    Give this a try;

    Please Login or Register  to view this content.
    .
    Last edited by Haluk; 07-01-2019 at 12:22 PM.

  16. #16
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    @Olly - thanks for chipping in.

  17. #17
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    Thank you Olly!

    The solution is very nice.
    But i can not protect view because after unlinking PQ users should have possibility to input new data into table. So in Excel i should have mechanism for creating connection to CSVs based on tables names from workbook and after loading - unlink them.

    And the read data is different for each table - each table can be different so it would be not that easy to read.
    And additionally i have to skip also columns with formulas. So only update existing tables, not replace.

    I think that i will try with Haluk's code (and still waiting for Marc L'solution who is talking a lot but not providing any specific examples).

    But problem with Haluk's code is that fields are manually provided. I will know only that for example for column numner 3 (RegionID) there is formula so i have to skip this column while loading.

    I thought to :
    0. Code for opening recorset is very nice.
    1. Assign array from opened recordset.
    i am trying with :

    Please Login or Register  to view this content.
    but i am getting error "Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record."

    2. Use application.index with dynamic array to specify which column should i output.

    So if i know that i want to skip column = 3 (RegionID) i could use something like here:

    Please Login or Register  to view this content.
    But maybe i will have to loop through table and if i have number = 3 just skip.

    Any help much appreciated,
    Jacek
    Last edited by jaryszek; 07-02-2019 at 01:10 AM.

  18. #18
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: Importing CSV as table

    Try providing more meaningful sample files, and expected output. I'm not quite clear on what you're trying to achieve...

  19. #19
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    Ok Olly,

    in Main.xlsm workbook (master workbook) i have a lot of tables.
    And for each table i have in a folder (which i have to dynamically provide) csv with tables values:

    Screenshot_31.png

    Now admin will change values in tables in csv.
    So i have to load data into workbook and update the corresponding tables but skipping columns with formulas.

    Screenshot_32.png

    So for first Table t_csvExample i have to not load column 3 because there is a formula and i will replace with value (i can not do this!)
    For the second: t_csvExampleVer2 i have to skip column 4.

    So i have to check which table i want to load, run PQ or code (i prefer code for now because i am not good with PQ),
    show tables which i want to load and PQ or code should check each corresponding table and load data (replace values) in Main workbook tables.
    And code or PQ has to remember that we have to skip certain columns for specififc tables.

    I updated Main.xlsm and source csvs.

    Jacek
    Attached Files Attached Files

  20. #20
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    I don't understand. Why are you adding formulae to the main workbook when the .csv files already contain the raw data for those columns?

  21. #21
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    Because i have different versions.
    And raw data can be different in earlier version and current one.

    This is connecting with testing, versioning and process in my company.
    Main workbook is the master one, the csv are only specific copies for current schema and values.

    Jacek

  22. #22
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    Sorry - makes no sense to me at all. You need to provide data that properly reflects the real data you are working with.

  23. #23
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    This is the real data.
    What data do you want?

    i can not give you personal data etc. - i can not because data is fragile!
    This is not matter what you have in CSV - you can have there dogs or cats - sample is only to reproduce issue.

    The process is like i wrote.

    I have csv and have to load table but without formulas.
    Because in Master workbook user can input their own data.
    So i will upload Table1 and test it and it will work properly but user will take master and change it !

    Imagine situation that user will say : the version from 3 weeks ago was working ok but now this is not working.
    So i will go upload data from csv and have solution for him.
    Not to fix all the time and correct values on the fly.

    So this is why i have to do this.
    So process is simple - how to upload data from csv to master and skip columns with formulas.

  24. #24
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    I am not asking for personal data!

    CLARITY is what we need - you have now clarified this. Thanks for that.

  25. #25
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    Uff glad that we understood

    Jacek

  26. #26
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    I don't understand why you are using the volatile INDIRECT function in one of your two formulae when it could simply be this:

    =INDEX(t_DataCentersSource[LocationID],MATCH([@RegionName],t_DataCentersSource[DataCenter],0))

  27. #27
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    aa ok,

    thanks i have to fix this.

    Jacek

  28. #28
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow

    Quote Originally Posted by jaryszek View Post
    and still waiting for Marc L'solution who is talking a lot but not providing any specific examples
    • First as I was 'harassed' by a moderator yesterday 'cause supposedly I 'insulted' you in post #6 (!)
      - read it again and tell me if you're even shocked - taking some free negative reputation points
      you may understand why I stopped here (even if I yet have ready solutions, as you can find out in threads here …)
      after the same moderator told me you wanna learn VBA so I gave you some obvious beginner direction in post #11
      (as it's very not difficult to open & read the VBA inner help for who wants to learn) …
      On your other opened thread on the same csv subject (!), notice I gave you a demonstration
      once you dare to clarify partially (see next point) your need.

    • As there are several ways to fit your need, we expect a crystal clear explanation with an attachment accordingly.
      Notice I'm was not alone to need clarification within this thread …
      So if the initial post contains a better attachment with before & after workbooks and with a csv containing
      more than the two same lines than the sample workbook, of course you had a solution directly in post #2 !
      The better initial explanation & attachment, the better, quicker and more targeted answer !

    Have a good day ‼

  29. #29
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    Hi Marc L,

    i explained what is this about.
    And attached new workbook,

    what do you want to know more?

    And please calm down,
    If you do not want to help - just skip my topics.
    Jacek

  30. #30
    Valued Forum Contributor Haluk's Avatar
    Join Date
    02-14-2019
    Location
    Turkiye
    MS-Off Ver
    2010 - 64 Bit on Windows-11 (22 H2) 64 Bit
    Posts
    1,149

    Re: Importing CSV as table

    Quote Originally Posted by jaryszek View Post

    .....
    ...

    ......I will know only that for example for column numner 3 (RegionID) there is formula so i have to skip this column while loading.
    ....
    ...
    ..

    We can check if the cell has an formula and if not exists, then it can be feeded from the recordset as follows;

    Please Login or Register  to view this content.
    .
    Last edited by Haluk; 07-02-2019 at 04:16 PM.

  31. #31
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    o wow great!!!

    Best solution Haluk!
    Thank you very much.

    I think your code is the fastest.

    I am closing topic or maybe Marc L will propose something in one line of code?

    Best,
    Jacek

  32. #32
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow

    You misread again but if you want a one codeline, cheers ‼

    PHP Code: 
    Sub Demo4Noob()
        
    End
    End Sub 
    Do you like it ? So thanks to click on bottom left star icon « Add Reputation » !

  33. #33
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    Marc L,

    you are rude.
    And not helping.

    Topic is closed - you didn't provide any solution and you are laughing from others codes.
    Olly, AliGW, Haluk tried to help me here and explain a lot - you are only one who is trying to ...? What?

    Jacek

  34. #34
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow

    I'm not rude as you asked about a one codeline, you were dreaming or what ?

    This thread is a mess as the initial post is far not complete like any forum expect so I can't waste time to read all from the beginning,
    as you are already happy with a solution, as I tried but a moderator stopped me and as I yet helped you in another thread,
    what else ?

    Hoping your next threads will be crystal clear & complete in their initial posts …

  35. #35
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    I just asked, you wrote that it can be done via oneline code. And laughing.
    And boasting that every man knows it from VBA help. I am not every man maybe?

    now you are writing macros for "noobs" and referencing this to me. This is insulting.
    You appeared in my topics and all the time trying to show how smart you are. Maybe you are but this is not helping.
    Try to ask me, not insult. I will always explain and help if i can.

    Jacek

  36. #36
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Re: Importing CSV as table

    Quote Originally Posted by jaryszek View Post
    I just asked, you wrote that it can be done via oneline code. And laughing.
    Where is this thread ?! Post a link, thanks ‼

  37. #37
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Re: Importing CSV as table


    You misread again : well read this time post #11 as you can see in VBA help …

  38. #38
    Forum Contributor
    Join Date
    01-16-2014
    Location
    Poland
    MS-Off Ver
    Excel 2016-365
    Posts
    2,940

    Re: Importing CSV as table

    Marc L enough this not producing anything discussions.

    I am done writing here.

  39. #39
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Re: Importing CSV as table


    So am I, have a good day !

  40. #40
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    Marc - I am afraid that your posts are coming across as unhelpful and intolerant. As I have asked before, unless you have something informative or helpful to add, without making comments about other members' competences, then please don't post.

  41. #41
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Re: Importing CSV as table


    Is reading a competence ?

  42. #42
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,618

    Re: Importing CSV as table

    Enough, now, Marc. If this continues, I shall remove your posts. You have been warned.

  43. #43
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: Importing CSV as table

    Quote Originally Posted by Marc L View Post

    Is reading a competence ?
    It is - but so is politeness.

    I 2nd Ali's warning Marc. If you have nothing constructive (AND courteous) to add, then dont add anything. If your comments along these lines continue, your privileges may be revoked.

    Thanks.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. CSV file is importing as a Table
    By dagindi in forum Excel General
    Replies: 0
    Last Post: 06-26-2017, 11:41 AM
  2. Scraping/Importing Table
    By Madskillet in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-10-2016, 07:34 PM
  3. Importing table from Web
    By nkyg1985 in forum Excel General
    Replies: 0
    Last Post: 07-11-2013, 10:51 AM
  4. importing multiple csv into 1 table
    By saimike in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 10-19-2011, 03:36 PM
  5. Importing a PDF table into Excel
    By zapp7 in forum Excel General
    Replies: 5
    Last Post: 05-25-2010, 02:21 PM
  6. Importing Access table as it is.
    By sspandit in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 11-26-2009, 04:34 AM
  7. Importing An Awkward Table
    By hackett1867 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-23-2008, 08:13 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1