+ Reply to Thread
Results 1 to 40 of 40

Data extraction and formatting using macro

  1. #1
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Post Data extraction and formatting using macro

    Hi Team,

    I am not good at macros and need your help desperately. I tried learning but really couldn't succeed in it as the subject is vast and need lot of time.

    Here is what I am looking for what macro should do:

    To start off macro should pick selected columns such as owners and their projects, start date, price Final price, priority and status columns and paste into new sheet

    At the same time only pick selected owners(Dave, Brian, Ken, Russell, Ben)data along with their high low, and medium projects then format the price and the final price column (that is to first convert them to numbers, then change it to the currency format and set the decimal place to 0) and then sort owners (AtoZ) along with Price and final price columns (largest to smallest) into a new workbook and to a new sheet in the same workbook with a name to the sheet called Extracted data

    Please note owners may change and new members might get included in the list ( I am not sure if something dynamically can be done about this in the macro)

    I have included sample data and how the output should look like....Please help

    Thank you,

    4gurus
    Attached Files Attached Files

  2. #2
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    Your profile shows Excel 2007 & 2010 yet you posted .xls Files. What Versions of Excel must the Code accommodate?
    John

    If you have issues with Code I've provided, I appreciate your feedback.

    In the event Code provided resolves your issue, please mark your Thread as SOLVED.

    If you're satisfied by any members response to your issue please use the star icon at the lower left of their post.

  3. #3
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    The Code in the attached has been tested in Excel 2003 and 2007 and appears to do as you require. I'm not certain of the Sort Sequence as I'm not able to follow your description.

    CTRL + z will fire the Code and Output will be written to the same Folder where the Sample File lives..
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    The macro works brilliantly however missing few criteria

    1. It should pick only selected columns and those are projects, start date, price Final price, priority and status totally 6 columns instead of 8. Sorry I didn't get that right in the output file I shared.

    2. For the selected owners it should only pick high, low, and medium in priority column and not NA

    Sorry about the file xls format you can definitely have the macro in 2007 format.

    Thanks again Jaslake you are a star

    4gurus

  5. #5
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    Replace the Module1 Code with this...still not certain of your Sort Requirements
    Please Login or Register  to view this content.

  6. #6
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake

    Thanks for the editing the macro; after testing I realized that there will be addition to columns in the future so wondering if you can actually make a form where I can pick and choose the columns one would like to have in output file just like you did for the owners which I can pick and choose.

    Coming to the formatting part I was actually referring to the custom sort; first for the owners and then for Price and Final price

    Thanks again Jaslake

  7. #7
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    Why don't you SHOW me the Final Product sorted so I don't have to guess. Leave the Owners Column in the Final Sorted Product, I'll delete it later.

    I'll need to look at this
    make a form where I can pick and choose the columns one would like to have in output file

  8. #8
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    I am extremely sorry for not being clear on what Macro should do, but now I have clear understanding of what macro should do..

    Macro Conditions:

    First macro should give user form to choose columns, then user form to choose Category(IT&Telecom), then user form for Region, then Priority(Low high medium), and then user form for Owners.

    Please note that these column's could be anywhere in excel sheet for instance category and Region column could be in column AA and Aj respectively in real-time environment and same with other columns

    Formatting condition

    First sort owners A to Z then Sort Price (Largest to smallest) by going to sort by color > custom sort > add level> then price usd.

    Note: this Price column could be anywhere in excel sheet.

    Hope I am clear this time. If not I will try to come up with better examples...Sorry again
    Attached Files Attached Files
    Last edited by 4gurus; 01-28-2014 at 10:01 AM.

  9. #9
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    What version(s) of Excel must the Code accommodate?

    Are Column Headers ACTUALLY in the First Row in your "real-time environment" Workbook?

    Does the Workbook reflect the ACTUAL Structure of your "real-time environment" Workbook (knowing that the Column Headers may not be in the same order)?

    Are these the ACTUAL Column Names...
    Category
    Region
    Priority
    Owners
    Price USD
    Final Price USD

    Regarding this...are these the Columns the User wishes to SEE in the Final Report?
    give user form to choose columns
    If so, it's my understanding the User will ALWAYS SEE Category, Region, Priority, Owners, Price USD and Final Price USD in addition to the Columns the User chooses.

    Please clarify...
    Last edited by jaslake; 01-28-2014 at 01:00 PM.

  10. #10
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    ...Sorry...duplicate post...
    Last edited by jaslake; 01-28-2014 at 11:15 AM.

  11. #11
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake

    Thanks for being patient with me. I have answered to your questions below

    What version(s) of Excel must the Code accommodate? Excel 2007

    Are Column Headers ACTUALLY in the First Row in your "real-time environment" Workbook? Yes

    Does the Workbook reflect the ACTUAL Structure of your "real-time environment" Workbook (knowing that the Column Headers may not be in the same order)? Almost but there are many more columns that I have not included and I might edit few names in the macro if required in the future and if anything changes in the actual structure

    Are these the ACTUAL Column Names... Yes they are however under Priority columns which now reads as (high low medium) can change to (Identified, Inprocess, submitted)

    Category
    Region
    Priority
    Owners
    Price USD
    Final Price USD

    Regarding this...are these the Columns the User wishes to SEE in the Final Report? Yes, these are some of the required columns again there could be others which I might need which macro should allow to choose from the user form.

    give user form to choose columns
    If so, it's my understanding the User will ALWAYS SEE Category, Region, Priority, Owners, Price USD and Final Price USD in addition to the Columns the User chooses. Yes

    Please clarify...

  12. #12
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    What are the REQUIRED Columns?

    ONLY these...

    Category
    Region
    Priority
    Owners
    Price USD
    Final Price USD

  13. #13
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    This is important...if I write the Code for Excel 2007 it won't run in Pre Excel 2007...verify this
    What version(s) of Excel must the Code accommodate? Excel 2007

  14. #14
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    Well along with the above list you mentioned may be old price (formatted to currency).

    Note: Columns will be added in the future and its header will be in the 1st row, so user form should give the option to pick and choose column names

    For example: In future a header by name "Latam Spend" gets added in Column AC which has currency value the macro should identify this column header and list it in the user form to select this column

    Basically I am expecting the macro to allow me to pick the desired columns I wish to see in the output file and then filtering data based on Category, Region, Priority, Owners for which I need the user form as a filtering mechanism.

  15. #15
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    I will be using this Code in Excel 2007 and above(Excel 2010 or Excel 2013). I hope it will be compatible.
    Sorry again for sending sample files in xls format...

  16. #16
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    This will be handled by the Code
    In future a header by name "Latam Spend" gets added in Column AC which has currency value the macro should identify this column header and list it in the user form to select this column
    Is this a REQUIRED Column or an Optional Column...you tell me...the User will be able to select if so desired
    Well along with the above list you mentioned may be old price (formatted to currency).

  17. #17
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    Just a thought...there best not be ANY Column Headers that are blank...

  18. #18
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    Old price is not mandatory one but yes it should be present in the user form for the users to select it.

    I don't think there will be any blank columns

    Thanks!

    4gurus

  19. #19
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    I don't know...you tell me...
    Attached Files Attached Files

  20. #20
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    Looks great and works like a charm but few things has to be addressed and tweaked

    Firstly, In columns list(userform) I observed that the last column was not captured in the list so when I entered a dummy column beside "Upload" header it showed "Upload" in the column list.

    Secondly, In category when I select any of the items the user form list should update itself in region, priority, and owners list

    example: Let's say I choose Capital in category list first the user form region list should update and show only APAC as it is only present in APAC and Priority list will update to just high and medum, and the owner list will have just Yuan's name

    Similary If I were to click Latam in Region list "first" it should update Category, Priority and Owners list (userform)
    Same goes with Owners if I select them first or anything in Priority list.


    Thirdly, Let's say I don't select anything in any of the list that is Column, Category, Region, Priority Owners
    and click "GO" it should take raw data and have it in the output file.

    Hope I am clear this time and once again wonderful macro work Jaslake.

    Thanks!

    4gurus
    Last edited by 4gurus; 01-30-2014 at 04:15 AM.

  21. #21
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    Perhaps another can write the Code to allow the User to select any Field at random and update the respective Lists.

    What you're suggesting could possibly be done with Dependant ComboBoxes (ComboBoxes are Single Select...not Multi Select). I have neither the desire nor the talent to pursue this approach.

    If you wish to take the approach whereby the User selects in a predefined order let me know...I'll work with it.

  22. #22
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    Sorry for asking a bit too much. I think I should be able to work with it.

    I need one last favor from your, that is to add "select all" buttion in the user form option for "Owners list" so that we can select all the names at one go when required.

    Thanks!

    4gurus
    Attached Files Attached Files

  23. #23
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    This has been fixed
    Firstly, In columns list(userform) I observed that the last column was not captured in the list so when I entered a dummy column beside "Upload" header it showed "Upload" in the column list.
    A Toggle Button has been added to the UserForm for this
    add "select all" buttion in the user form option for "Owners list"
    Attached Files Attached Files

  24. #24
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    I am sorry to come back because of the names changes that happened to the headers because of which macro threw up debug error

    I tried changing it in Macro but could not fix it. You will see the changes I have made.

    Names changes are Owner=Project Owner; Region=FOR Deck; Category = CST; Priority = Status

    Regarding formatting it is Annualized Spend (USD) and Annualized Save (USD) which has to be in currency format and custom sorted high to low after Project Owneris customer sorted

    Please help!!!!!! Jaslake

    Thanks!

    4gurus
    Attached Files Attached Files

  25. #25
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    Give me a list of all the Column Names you wish to be formatted as Currency (or does it not matter except for the two you mentioned).

  26. #26
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake

    I have the pasted the column names below which should be formatted to currency. So when ever I select any of these columns below in the column list (userform) and select other required options as required the output file should have the columns I selected (any of the below ones) formatted to currency.

    Please note: Most of the columns below don't have numbers in the samplecopy v5 I shared with you; but they are the ones to be formatted when I select them in

    Current Year Spend (USD) Current Year Save (USD)

    Annualized BCS Spend (USD) Annualized BCS Save (USD) Current Year BCS Spend (USD) Current Year BCS Save (USD)
    Annualized HERO Spend (USD) Annualized HERO Save (USD) Current Year HERO Spend (USD) Current Year HERO Save (USD)
    Annualized HMT Spend (USD) Annualized HMT Save (USD) Current Year HMT Spend (USD) Current Year HMT Save (USD)
    Annualized PS Spend (USD) Annualized PS Save (USD) Current Year PS Spend (USD) Current Year PS Save (USD)
    Annualized Forp Spend (USD) Annualized Forp Save (USD) Current Year Forp Spend (USD) Current Year Forp Save (USD)
    Annualized AMERICAS Spend (USD) Annualized AMERICAS Save (USD) Current Year AMERICAS Spend (USD) Current Year AMERICAS Save (USD)
    Annualized EMEA Spend (USD) Annualized EMEA Save (USD) Current Year EMEA Spend (USD) Current Year EMEA Save (USD)
    Annualized APAC Spend (USD) Annualized APAC Save (USD) Current Year APAC Spend (USD) Current Year APAC Save (USD)

    Thanks!

    4gurus
    Last edited by 4gurus; 01-30-2014 at 04:55 PM.

  27. #27
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    So...tell me about the Sort...I have never been clear.

    Based on what you've written I see the Sort being this:

    First Sort............. Project Owner in Alphabetic Order (A - Z)
    Second Sort......... Annualized Spend (USD) (High to Low)
    Third Sort............ Annualized Save (USD) (High to Low)

    Is this correct?

  28. #28
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    Yes that is correct

  29. #29
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    I'll have something for you in a short while.

  30. #30
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    Try the Code in the attached...
    Attached Files Attached Files

  31. #31
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    This one worked beautifully, but I had to change the column name For Deck to MOR Deck in the actual file as per the request which threw up debug error and the formatting to currency failed for USD columns; I think because of this change I am trying to make.

    Could you please change the name of this column to "MOR Deck" and send it back to me. I think we are very very close to finishing this.

    In fact I could not change the column name (For Deck) in the excel sheet it said The user has restricted value that cannot be entered

    Thanks!

    4gurus
    Attached Files Attached Files
    Last edited by 4gurus; 01-30-2014 at 07:50 PM.

  32. #32
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    I ran this through several times...seems to work. Let me know.
    Attached Files Attached Files

  33. #33
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    This time almost everything worked except formatting.

    All I did was copied the numbers and pasted in to the macro file from a data source number file after which the formatting didn't work

    Some of the columns in data source number file match with the Macro file but all are not there
    like Current year spend and Current year Save and few others in the end.

    I have attached all the file you would need.

    Let me know what could be wrong.

    Thanks!

    4gurus
    Attached Files Attached Files

  34. #34
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    You did what?

  35. #35
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    From the "Data Source Number" file which I have shared with you; I copied Annualized Spend (USD) and Annualized Save (USD) columns' data and pasted into the macro file (samplecopy v5.2) and then ran the macro it worked fine except the Formatting that is changing the columns with USD to currency format and then sorting them.

    Similary I have different excel files from which I pick data(just numbers) for columns like Current year spend; current year save and columns like:

    Annualized BCS Spend (USD) Annualized BCS Save (USD) Current Year BCS Spend (USD) and many more so when I did that and pasted it into the macro file and ran the macro the formatting failed.

    Really could not understand what wrong I could have done.


    Thanks!

    4gurus

  36. #36
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    I realized what is wrong when I am copying the those numbers from the column I think they are in the text format which is is why there is a small triangle displayed beside those numbers giving option to convert to numbers.

    Please help me in converting those Columns with (USD) to numbers first and then to currency in the macro; I think that should fix the problem.

    I think sorting Annualized spend (USD) and Annualized save (USD) will happen automatically.

    Thanks!

    4gurus

  37. #37
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus
    This is exactly what's happening...I'm looking for a workaround
    I realized what is wrong when I am copying the those numbers from the column I think they are in the text format which is is why there is a small triangle displayed beside those numbers giving option to convert to numbers.

  38. #38
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    Hi 4gurus

    See if the attached works for you...
    Attached Files Attached Files

  39. #39
    Registered User
    Join Date
    02-11-2013
    Location
    Bangalore
    MS-Off Ver
    Excel 2007 or Excel 2010.
    Posts
    65

    Re: Data extraction and formatting using macro

    Hi Jaslake,

    Thanks a ton. You have been extremely patient with my various requests. You have been the Macro Hero for me, just can't imagine this task being accomplished without you.

    May God Bless You Jaslake.

  40. #40
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Data extraction and formatting using macro

    You're welcome...glad I could help...thanks for the Blessings...need 'em.

    If you're satisfied by any members response to your issue please use the star icon at the lower left of their post.

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

+ 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. Data Extraction for Multiple Column (Formula or Macro)
    By sumairaashraf in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 09-17-2012, 03:06 PM
  2. [SOLVED] Macro for data extraction?
    By dseresin in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 06-21-2012, 01:01 PM
  3. Excel Data Extraction Macro/VBA
    By mgilder5000 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 03-28-2012, 07:05 PM
  4. Data comparison and extraction (VB Macro)
    By reachspk123 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 03-24-2012, 02:39 PM
  5. [SOLVED] Listbox selection as a parameter in data extraction macro.
    By abhay_547 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-20-2010, 12:28 PM

Tags for this Thread

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