+ Reply to Thread
Results 1 to 51 of 51

complex matrix data counting and extraction problem

  1. #1
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Post complex matrix data counting and extraction problem

    I am having difficulty coming up with a working VBA that counts and gathers data for this complex matrix. If anyone with right experience- I would be very grateful. Thanks.
    Attached Files Attached Files

  2. #2
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extrapolation problem

    You will notice that the only cells counted are ones with a quantity other than 0.
    you will also notice that the quanity in each cell is really not important here; we are just adding up the number of cells that have a non zero quantity.
    Thanks.

  3. #3
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extrapolation problem

    i made a mistake in the ResultSheet(second sheet); the first container IHJo8 has '1' Unrated cell not '0' i guess that's one reason why i need this code. we humans make mistakes. computers dont. thanks.

  4. #4
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extrapolation problem

    There is probably more mistakes and omissions that i am not aware of. i just hope i packed enough concept for you to run with it. please let me know if you have questions. I just been looking at this thing for so long i am getting tired.

    I just realized i keep replying to myself. hopefully no more - your turn.
    Last edited by Red fuji; 09-19-2012 at 02:14 PM. Reason: replying to myself.

  5. #5
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    heeeeelp.

    pleeeeese
    Last edited by Red fuji; 09-20-2012 at 01:21 PM.

  6. #6
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: complex matrix data counting and extraction problem

    It will be helpful if you explain how you arrive at your result sheet. If i look at it, it does not make sense to me.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  7. #7
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Absolutely !
    Thanks for asking. You know when you are working on a something for so long and you are familiar with it completely but fail (like i did) to see that maybe it is not so clear to others - thanks for that feedback.

    The RawDataSheet has 14 columns D:Q having CONTAINER NUMBERS; let's take the first CONTAINER NUMBER 'IHJo8' in column D for example; if you filter out the blank cells and the 0 quantity cells you will be left with the following quantities: 0-VERY GOOD, 2-GOOD, 2-BAD, 1-QUESTIONABLE, 0-NOTRATED. And that is what is transfered to ResultSheet Row 2.
    Attached Images Attached Images

  8. #8
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Here is what the result should look like AFTER and BEFORE running the Macro. The VB doesnt have to be short or super neat- just intuitive and simple enough for a novice to go in and revise it if the columns, rows and data changes.
    Attached Images Attached Images
    Last edited by Red fuji; 09-20-2012 at 02:54 PM.

  9. #9
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: complex matrix data counting and extraction problem

    why do you need vba-formulas would do this quite easily?
    Josie

    if at first you don't succeed try doing it the way your wife told you to

  10. #10
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    I just thought VBA was the way to go-personally i can understand formulas better than VBA- (really I suck at both) i find VBA fascinating though and would love to learn and use it. there are so many cells involved, you are looking at a sample file, the real file has more than 1k rows. if i can drag the formula down the rows then i guess it wont be too bad since it goes across five columns only . I just dont want to revise the formula for each single row. dragging is ok.thanks

  11. #11
    Forum Guru JosephP's Avatar
    Join Date
    03-27-2012
    Location
    Ut
    MS-Off Ver
    2003/10
    Posts
    7,328

    Re: complex matrix data counting and extraction problem

    in this version of your file I have added formulas in columns to the right of your original result table for comparison. it's the same formula in every cell so you can copy it across and down as required
    Attached Files Attached Files

  12. #12
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Joseph,
    Your formula works great for this setup. i see you got it to work nicely-dragging horizonally and vertically. i like your formula . BUT the reason i still need a VBA is because it would automatically pull in the Part Number and Description from the RawData sheet and populate the perspective result to the other other sheet- I just need to pre-populate the headers as shown in the attached images and the code would do the data gathering and calcualtiions. What I am trying to do is minimize human errors by minimizing copy/paste of data. And it is not a stright forward copy and paste; you have to manually line up and match horizonal data to vertical data and such (Vlookup stuff) - increased chance of errors (and i make lots of them.) and the file is going to be this large with lots of rows and columns AND others working on the file as well.
    Last edited by Red fuji; 09-21-2012 at 12:52 PM.

  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: complex matrix data counting and extraction problem

    Hi Red fuji

    See if the code in the attached does as you require...let me know of issues.
    Attached Files Attached Files
    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.

  14. #14
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hello jaslake,
    It certainly does the job well ! Prep_Data Macro calls on Populate_Results Macro - geniously clever setup. just need to understand it.

    i just need to study the Macros and tweek to accomodate my actual file which has info on different columns and additional columns.
    You are a life saver.
    Last edited by Red fuji; 09-21-2012 at 07:16 PM. Reason: discovered two macro

  15. #15
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: complex matrix data counting and extraction problem

    You've crossposted this at the Code Cage Forum. I replied there that you shouldn't need VBA, but to use Formulas instead
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  16. #16
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hello Jaslake,
    I want to personally thank you for the tremendous effort you put in creating this complex macro- it certainly does the job well. I don’t know how else to thank you for the time and effort you taken from your personal time in tackling this sophisticated problem. I was getting desperate for a solution and you came in at last minute with an eloquent VBA. I don’t know much about you but I wish you great success and fortune in whatever venture you face-you certainly deserve great kudos not just for understanding the problem but for coming up with a working solution and most importantly for offering it to a complete stranger in times of need. if the thread allowed for more points you certainly deserve a ten.
    Last edited by Red fuji; 09-27-2012 at 03:07 PM.

  17. #17
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi,
    I made a change to the Excel file; I moved the data from U17:V31 to A3:B16 but now I dont know how to revise the VBA code to capture the change.
    Attached Images Attached Images
    Attached Files Attached Files

  18. #18
    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: complex matrix data counting and extraction problem

    Hi Red fuji

    Is this new workbook a replica of your actual file in structure? Does the actual file have 17 columns?
    Are there ONLY 14 Containers? Are the Container Numbers and Container Descriptions ALWAYS the same?
    Will Container Description ALWAYS occupy Cells A3 through A16?
    Will Container Number ALWAYS occupy Cells D2 through Q2?

  19. #19
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi Jaslake,

    "Is this new workbook a replica of your actual file in structure? Does the actual file have 17 columns?"
    I would say it is closer to actual file but not exact; i have that container number table shifted away to U:V for simplicity of explaining what i want to do. But really it is much more like in A:B as you see it now. The concept is to keep part number in one column and description in another-there column location could shift though. I will be using this VBA for a number of projects which have varying number of columns and rows- but they all have the same basic Hierarchy. i am hoping i could easily revise the code to match the project. The number of Containers in row 3 to 16 will change from project to project. Also the number of Parts in Row 17 to 116 could change as well. I am hoping i could go into the VBA and revise the number to match up.

    "Are there ONLY 14 Containers? Are the Container Numbers and Container Descriptions ALWAYS the same?"
    could have more or less containers depending on the project.

    "Will Container Description ALWAYS occupy Cells A3 through A16?"
    no-the actual file has many more columns in varying locations throught the worksheet. I did not want to clutter the sample file for easy understanding- i could have probably done a better job with that. My thinking is if i know how to do one column i could copy the VBA code to the others- (i maybe wrong here)

    "Will Container Number ALWAYS occupy Cells D2 through Q2? "
    they will always be grouped/listed right next to each other but they could shift; D2:W2 or E2:AX2 etc.

    If the VBA lists rows/columns by numbers/letters then i could change those to match up the Excel file. It may not end up to be the most clean code but will make it much easier for laymen to revise across projects.

    Thanks again.

  20. #20
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    Moving targets are difficult to hit. This Prep_Data code will work on your most recent attachment (the Populate_Results code remains the same based on this file structure). If you're really interested in modifying the code for other worksheet structures you can analyze the changes I made from the original code to this code. I believe I changed only two lines of code (I left the old lines so you can see the changes).

    If you have 3 or 4 or 5 structures you're dealing with perhaps we could make a Universal Prep_Date macro but if the structure is not going to be even that consistent (3 or 4 or 5) then it would be very difficult for one not familiar with your structures.

    Anyhow here's the revised code...let me know what I can do to help.
    Please Login or Register  to view this content.

  21. #21
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Jaslake-thank you
    easy to revise:
    ActiveWorkbook.Names.Add Name:="Description", RefersTo:= _
    "=RawDataSheet!$B$3:$B$16"

    If you dont mind , i inserted four additional columns with random data and blank cell to simulate a Universal Structure-I think it will do it.
    Thank you !

    I am sorry i was in a hurry- i guess data in row 17 on downdown for the additional columns dont matter anyway.- empty cells where go where it matters: row 3 to 16.
    Last edited by Red fuji; 09-26-2012 at 03:43 PM. Reason: row 17 to end dont matter

  22. #22
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    I'm trying to develop an approach to and relationships of data regarding your issue. Couple of questions regarding your most current attachment Copy of Matrix Data v1.2_jaslake_table moved v1_basic structure.xlsm.


    In RawDataSheet:
    • In Row 2 the Container Numbers all have 90 Degree Orientation...is this ALWAYS true?
    • In Row 2 the Container Numbers COUNT happens to be 14 and the COUNT in Column D (PartNumber) from D3 to D16 also happens to be 14...will these counts ALWAYS be the same? Such that if there are 14 Container Numbers in Row 2 there will be 14 Part Numbers in the PartNumber Column (whatever Column that happens to be)?

  23. #23
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi jaslake
    I had to step away from computer-
    In Raw Datasheet;
    * In Row 2 the Container Numbers all have 90 Degree Orientation...is this ALWAYS true?
    Yes. It just allows the column width to be narrow to keep the data from going too far outside the screen because I could have up to 150 Container Numbers.

    * In Row 2 the Container Numbers COUNT happens to be 14 and the COUNT in Column D (Part Number) from D3 to D16 also happens to be 14...will these counts ALWAYS be the same?
    YES. The reason Container Numbers are repeated vertically is because there are more properties such as Location/Manufacturer/Uses/Person ,etc. that I cannot possibly list horizontally. The horizontal listing is for talling up the quantities and the vertical listing for the additional properties.
    Last edited by Red fuji; 09-26-2012 at 07:08 PM. Reason: fixing english

  24. #24
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    There was a question I failed to ask
    •In Row 2 the Container Numbers all have 90 Degree Orientation
    Are these the ONLY cells in Row 2 that have 90 Degree Orientation?

  25. #25
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi jaslake,

    "Are these the ONLY cells in Row 2 that have 90 Degree Orientation?"
    Not really, There are other headers oriented at 90 - for space saving not critical. I think I see that you are trying to clarify my vague needs-thanks. I didn’t want to go too far in asking for the headers as well. The problem is complex enough. The second sheet is really a report that I am passing on to my superiors. The report should have at minimum the basic columns that have already been included in the VBA. The other columns are added upon request or as needed-thus I want to keep their addition open- i just need to id them on the VBA to activate/deactivate.

    Status count for each container is the core of the report (VERY GOOD, GOOD, BAD, QUESTIONABLE, NOTRATED). Everything else is 'properties' of the CONTAINER NUMBER. The 'properties' columns are carried over from sheet one to sheet two per need.
    Last edited by Red fuji; 09-27-2012 at 12:45 PM. Reason: added last paragraph

  26. #26
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    Well this complicates matters on the approach I've taken
    "Are these the ONLY cells in Row 2 that have 90 Degree Orientation?"
    Not really, There are other headers oriented at 90
    So, are the Container Numbers in Row 2 ALWAYS contiguous (grouped TOGETHER...NEXT to each other)?

  27. #27
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    HI jaslake,
    yes, the CONTAINER NUMBERS set in row two will always stay together...listed right next to each other..consecutive columns.
    I can change the orientation to 0 degree for all the optional columns if you like but keep the CONTAINER NUMBER columns set at 90. It is just that i can have up to 250 columns for some projects and I am trying to condense column width if i can but it is OK-i can keep orientation consistent at 0 for the optionals.
    Last edited by Red fuji; 09-27-2012 at 02:56 PM.

  28. #28
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    I'm looking at another approach where the User highlights the Container Numbers in Row 2...and it'll work...IF you can live with User Input.

    I have working code assuming Container Numbers are the ONLY cells in Row 2 with 90 degree orientation but it's not practical you do this with 250 Columns.
    I can change the orientation to 0 degree for all the optional columns if you like but keep the CONTAINER NUMBER columns set at 90
    I'll get back to you...if you CAN'T live with User Input...YOU get back to me.

  29. #29
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi Jaslake,
    I'm looking at another approach where the User highlights the Container Numbers in Row 2...and it'll work...IF you can live with User Input.
    That would be great!

    I have working code assuming Container Numbers are the ONLY cells in Row 2 with 90 degree orientation but it's not practical you do this with 250 Columns.
    Not a problem.

    Can the user highlight certain property columns too in a secondary operation? is that possible?

    Thanks !

  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: complex matrix data counting and extraction problem

    Hi Red fugi

    The code in the attached asks the User to Highlight the Container Numbers in Row 2...having done so the code creates the Results detail. I believe the code works regardless of the number of columns or the location of the columns in RawDataSheet. It doesn't care where Description or PartNumber or PartNumberStatus columns are located...it finds them. Test the code on the attached...if it works as expected, test the code on a COPY of any of your live files. Let me know the results.

    Regarding this
    Can the user highlight certain property columns too in a secondary operation?
    I don't know what you have in mind...we'll need to look at it.

  31. #31
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi Jaslake,
    Works great ! Thank You.

    I don't know what you have in mind...we'll need to look at it.
    First popup window asks for the range of header cells with the container numbers and outputs result shown in JPG attached.

    Second popup window asks for the range of header cells with the properties columns such as DESCRIPTION, NAME, LOCATION, ETC. (I can select as many as needed)
    Either way I do need to output certain properties for Container Numbers. can the VB let me select which properties to include in the report?
    Attached Images Attached Images

  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: complex matrix data counting and extraction problem

    Hi Red fugi

    I do need to output certain properties for Container Numbers. can the VB let me select which properties to include in the report?
    Probably...show me what you have and what you'd like it to be.

  33. #33
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi Jaslake,

    I added two more Excel tabs to explain: 1.AfterMacro 2.BeforeMacro. Basically the header cells would be prepopulated with the following text before Macro Run: VERY GOOD, GOOD, BAD, QUESTIONABLE, NOTRATED. The code would then populate the rest of the headers and the count. as shown in AfterMacro tab. Can that be done? by Highlighting cells like you geniously did with the first or some other mean? Thanks again.

  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: complex matrix data counting and extraction problem

    Hi Red fugi

    Well the key to all the code is PartNumber so I'd suggest you need to prepopulate Results Sheet Columns A (Description) and B (PartNumber) along with VERY GOOD, GOOD, BAD, QUESTIONABLE, NOTRATED.

    The question becomes, besides the prepopulated Columns, do you wish a LIST of the NOT chosen Columns or do you want a list of those Columns you MIGHT choose from. Makes a bit of difference. If the latter...what's the list?

  35. #35
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Jaslake,
    I see what you are saying there. I will take the list you see in the third tab 'AfterMacro' COLUMN_1...COLUMN4. I was thinking i could pick and choose the columns by highlighting as you did with the Container numbers. It is all good.
    Thanks.

  36. #36
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    You could possibly do this
    I was thinking i could pick and choose the columns by highlighting as you did with the Container numbers
    My question is DO YOU WISH to do this. I'd think there are SOME Columns you're not interested in displaying...so, is there a LIST of Columns you may wish to display...or do really want them all as an option?

  37. #37
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi Jaslake
    True there are certain columns that wont be carried over to the Result sheet. but i really dont know which ones they are! - I know it sounds nuts. I just wish i could pick-and-chose them on the fly.

    You made it so easy highlighting the CONTAINER NUMBERS and letting the Macro do the rest. I wish i could do the same with the other columns as well; the macro would take the row of cells that i highlighted and use them for headers and fill down. vlookup i think.
    Thanks Again!

  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: complex matrix data counting and extraction problem

    Hi Red fugi

    Alrighty then...we'll
    pick-and-chose them on the fly
    Won't be tonight though...have duty in the morning. I'll get back to you when I figure it out.

  39. #39
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi jaslake,
    Not a problem
    On second thought- i think i will like to display ALL the columns... Carry them over to the result sheet. The unwanted columns can easily be deleted from the Result later. I have no problem with that. keeping the code complexity in check is more important. What do you think.

  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: complex matrix data counting and extraction problem

    Hi Red fugi

    The code in the attached appears to do this
    i will like to display ALL the columns... Carry them over to the result sheet
    Let me know of issues.

  41. #41
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi Jaslake,
    Thanks, Works great- one glitch;
    In 'Result' sheet, when I delete entire columns H to M and run the macro, it replaces G1 with the text "COLUMN_1" (normally G1 has text: "NotRated"

    Another thing, not a glitch just see if it is possible please;
    In same sheet, when I delete the text in header A1:B1 it doesn’t bring them back. Just trying to keep the pre-populated text limited to VERYGOOD, GOOD, BAD, QUESTIONABLE, NOTRATED-Those five columns only. Is that possible?

    Thanks !

  42. #42
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    Why
    trying to keep the pre-populated text limited to VERYGOOD, GOOD, BAD, QUESTIONABLE, NOTRATED-Those five columns only
    You don't need to do this...the Code does it
    when I delete entire columns H to M and run the macro, it replaces G1 with the text "COLUMN_1"
    If you insist on doing so you'll need to add these two lines of code to Prep_Data macro
    Please Login or Register  to view this content.
    Last edited by jaslake; 09-28-2012 at 01:54 PM.

  43. #43
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi Jaslake,
    You are right- I just need to study the code a little closer.
    I have a question on two of the procedures if you dont mind (i know i been a pest and you will be glad to get rid of me); Procedure #1 generates the DESCRIPTION column and Procedure #2 generates columns 8 and on. Can I elimnate procedure #1 and have procedure #2 take on that role?
    The DESCRIPTION column does not have to be right next to the PARTNUMBER column. I want Procedure #1 to generate the DESCRIPTION column excatly like how it generates column 8 and on. I just don’t know which part of the code I need to effect to make that happen if it is possible.

    Thanks again!

  44. #44
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi Jaslake-
    It looks like you already had that covered in the code-you read my mind. I activated one line and deactivated another. I just need to figure out how to eliminate procedure #1 from the code-i hope i can.

  45. #45
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    The only issue I have with your Thread is you don't have a clear idea of what you want/need. As I've said. moving targets are difficult to hit.

    What will go into the first two columns in your view of things (Columns A & B of Results)? Where will PartNumber and Description be, where ever they happen to land?

    Please think about and define your needs...then we can write code to accommodate those needs. Get back to me.

  46. #46
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi jaslake,
    As I got to understand how the code works and how each decision effects the code's complexity, i decided It is not important where each column lands on the Result sheet. As long as the data mates up horizontally I am fine. One of my top priorities is being able to revise the code as needed. And since I am only a novice at that i have to pick and chose what features to sacrafice for the sake of keeping the code as simple/intuitive as possible. If the code is too complex i wont be able to adjusted to changing data. I am trying to keep it one size fits all kind of thing. One of the highlights of this code is that you have it set it up so that i highlight the CONTAINER NUMBERS and the Code does the rest; i dont even have to open VBA to make changes if the number of containers increase or decrease or if the columns shift. I LOVE THAT kind of flexibility. and you already have a lots of those user-friendly features built in-If i shift a column the code still works so it is mainly with shifting columns that i worry about. I could have a project with the DESCRIPTION field in column F and in another project it will bein column ZZ. I have to adjust for those changies. But if the code allows for that flexibiiltiy then I love it. Another example why I need the flexibility is that in one project the DESCRIPTION cell might change to say PART DESCRIPITION so now i have to revise the code to match what's in Excel.
    I cant be too demanding to the point that it makes the code to complex. It might be a simple thing to revise the VBA but not for me-at least not today. So you see where I am coming from? Thanks again !

    I do admit that i didnt have clear requirements from begining.
    Last edited by Red fuji; 09-28-2012 at 05:43 PM.

  47. #47
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    What other kind of anomalies are there like this
    Another example why I need the flexibility is that in one project the DESCRIPTION cell might change to say PART DESCRIPTION so now i have to revise the code to match what's in Excel.

  48. #48
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Hi Jaslake,
    The columns in the RawdataSheet are not in any specific order; they could move and shift all over the worksheet. Even the number of populated columns could vary from worksheet to worksheet. But it appears your code handles that anamoly very well because I tested it by adding more columns to the right and in random places throughout the worksheet and they magically appeared in the result sheet. so I think we are OK there. Again it doesn’t matter in what order they appear as long as they appear-I can always move columns around.

    The only type of consistency in the RawDataSheet is the CONTAINER NUMBERs columns; they will always be consequtively listed-one after the other. And they will always repeat horizonalty and vertically.

    The core columns of this project are: PARTNUMBER, VERYGOOD, GOOD, BAD, QUESTIONABLE, NOTRATED . These can be listed in that order starting at Column A of ResultSheet.

    Columns other than those are 'property' columns (think of Window Explorer properties columns) and can be placed in any order directly after those.

    If you can get the Macro to generate everything in the Result sheet (instead of pre-populating) then that would be awsome! I know it is a change of direction on my part-again. But i think you proved that there is nothing you can't do. Thanks for your patience.

    If you can combine the two VBA modules into one that would be great.

  49. #49
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    Let me look at it.

  50. #50
    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: complex matrix data counting and extraction problem

    Hi Red fugi

    I believe the code in the attached resolves this
    The columns in the RawdataSheet are not in any specific order; they could move and shift all over the worksheet. Even the number of populated columns could vary from worksheet to worksheet
    and this
    The core columns of this project are: PARTNUMBER, VERYGOOD, GOOD, BAD, QUESTIONABLE, NOTRATED . These can be listed in that order starting at Column A of ResultSheet.
    and this
    Columns other than those are 'property' columns ... and can be placed in any order directly after those.
    and this
    the Macro to generate everything in the Result sheet (instead of pre-populating)
    and this
    Another example why I need the flexibility is that in one project the DESCRIPTION cell might change to say PART DESCRIPTION so now i have to revise the code to match what's in Excel.
    with this code
    Please Login or Register  to view this content.
    Notice the addition of the asterisk (*) in the above code.

    and this
    If you can combine the two VBA modules into one that would be great
    All the code is in one Module...they're still separate Procedures because that's my writing style...each procedure has it's own purpose and accordingly are compartmentalized.

    Let me know of issues.
    Last edited by jaslake; 09-29-2012 at 06:41 PM.

  51. #51
    Forum Contributor Red fuji's Avatar
    Join Date
    03-21-2012
    Location
    The earthquake state, USA
    MS-Off Ver
    2016 Office
    Posts
    140

    Re: complex matrix data counting and extraction problem

    Thank you! Thank You! Thank You!

    just give me a chance to absorb it.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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