+ Reply to Thread
Results 1 to 50 of 50

Analysing Array Data

  1. #1
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Analysing Array Data

    Hi,

    I have a simple array with 1s and 0s. But I want to identify the frequency of continuous 1s in the array, so for example in the array below:

    0,1,1,1,0,0,1,1,0,0,0,0,1,1,1,0,0,1,1,1,0,0,

    The program should be able to look through the array and churn out variables along the lines of:

    One_1_in_a_Row = 0
    Two_1_in_a_Row = 1
    Three_1_in_a_Row = 3

    (I have used crude variable names just to explain the scenario, the values correspond to the number of times the particular length of 1s in a row were identified)

    I am thinking of writing something which scans through the data, when it finds a 1 it then looks at the next position and if it is also a 1 it will increment a counter, it keeps incrementing the counter until it finds a 0 and it stops counting, it then identifies the number in the counter ie if the counter went up to 6 then it will increment the variable Six_1_in_a_Row , then it will carry on in this manner until it has scanned the entire array.

    Is this a decent method for what I am looking to do?

    Thanks

  2. #2
    Forum Expert
    Join Date
    12-24-2007
    Location
    Alsace - France
    MS-Off Ver
    MS 365 Office Suite
    Posts
    5,066

    Re: Analysing Array Data

    Is there several arrays to prepare, if yes how is the display ?
    - Battle without fear gives no glory - Just try

  3. #3
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Analysing Array Data

    Is the Array in VBA or Excel?

    It is simple to do what you want using string. The Array route is a lot more work.

    Number of "11111" in string "0,1,1,1,0,0,1,1,0,0,0,0,1,1,1,0,0,1,1,1,0,0"

    Is: (Len("0,1,1,1,0,0,1,1,0,0,0,0,1,1,1,0,0,1,1,1,0,0") - Len( Substitute("0,1,1,1,0,0,1,1,0,0,0,0,1,1,1,0,0,1,1,1,0,0", ",1,1,1,1,1","") ))/10

    You can do something Similar in VBA

    A = Join(ArrayA, "")

    Qty = (Len(A) - Len( Substitute(A, ",1,1,1,1,1","") ))/10
    My General Rules if you want my help. Not aimed at any person in particular:

    1. Please Make Requests not demands, none of us get paid here.

    2. Check back on your post regularly. I will not return to a post after 4 days.
    If it is not important to you then it definitely is not important to me.

  4. #4
    Forum Expert
    Join Date
    12-24-2007
    Location
    Alsace - France
    MS-Off Ver
    MS 365 Office Suite
    Posts
    5,066

    Re: Analysing Array Data

    What is the maximum number of continuous 1

  5. #5
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi,

    So my requirement is a bit more complicated than just providing the maximum number of 1s. I need build up the frequency of 1s in a row, as per my variables example. So that for example I know how many time there are two 1s (eg 1,1), how many times there are three 1s (1,1,1) etc so eventually I have visibility of the frequency of all lengths of 1s in a row.

    I hope this makes sense, which is why I made mention of having a counter system, which then banks the knowledge each time it goes through a set of 1s.

    Thanks

  6. #6
    Forum Expert nilem's Avatar
    Join Date
    10-22-2011
    Location
    Ufa, Russia
    MS-Off Ver
    2013
    Posts
    3,377

    Re: Analysing Array Data

    Hi Cerkit,
    maybe so
    Please Login or Register  to view this content.

  7. #7
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    So if I said how many times would you find X number of 1s consequtevily in the data, I need to know that for every sequence of 1s identified in the data.

  8. #8
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    So for example in the following data:

    111100000001111000110001110000011100011110000111110000110000111111

    The program will be able to give the following results:
    Frequency of consecutive 1s

    One = 0
    Two = 2
    Three = 2
    Four = 3
    Five = 1
    Six = 1
    Seven = 0

    Thanks

  9. #9
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Analysing Array Data

    Please Login or Register  to view this content.

  10. #10
    Forum Expert
    Join Date
    12-24-2007
    Location
    Alsace - France
    MS-Off Ver
    MS 365 Office Suite
    Posts
    5,066

    Re: Analysing Array Data

    For the data lay out, can I suggest:
    Column A = 111100000001111000110001110000011100011110000111110000110000111111
    Column B = Nb of 1
    Column C = Nb of 11
    Column D = Nb of 111
    etc ...
    Is it ok ??
    BTW There no anymore comma (,) ???

  11. #11
    Forum Expert
    Join Date
    12-24-2007
    Location
    Alsace - France
    MS-Off Ver
    MS 365 Office Suite
    Posts
    5,066

    Re: Analysing Array Data

    If the layout suggestion is good for you see next code and file attached
    Please Login or Register  to view this content.
    Attached Files Attached Files

  12. #12
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Can I populate the numbers I need from a column in the sheet?

  13. #13
    Forum Guru
    Join Date
    04-23-2012
    Location
    New Jersey, USA
    MS-Off Ver
    Excel 365
    Posts
    2,416

    Re: Analysing Array Data

    Quote Originally Posted by Cerkit View Post
    Can I populate the numbers I need from a column in the sheet?
    I am confused about where your 1's and 0's are located. Is each digit in its own cell (if so, is this cells A1,B1,C1, etc.)? Or do you have what you posted originally (0,1,1,1,0,0,1,1,0,0,0,0,1,1,1,0,0,1,1,1,0,0,) all in one cell? The comma at the end coupled with what you have written is what makes your layout unclear to me.

  14. #14
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi,

    Apologies, the commas were only to help with visual separation. My 1s and 0s are each their own cell within a column, so I have a column, each cell has only one number in it (either a 1 or a 0) so I need to populate the array from this column first. So the column looks like below

    0
    1
    1
    1
    0
    0



    etc....

  15. #15
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    The code from Mehmetcit earlier works perfectly (thank you for this), but struggling to populate A from a column which has the numbers. (Although still trying to understand the process)

    Please Login or Register  to view this content.
    Last edited by jeffreybrown; 03-10-2020 at 01:47 PM. Reason: Please use code tags!

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

    Arrow

    As a bully deleted my working VBA procedure …

    If at least you have attached a workbook with a good enough explanation in the initial post like any forum expect for
    you already have a solution since post #2 as, after all, this is very not a mind reader forum.
    So now you know …
    Last edited by Marc L; 03-10-2020 at 02:46 PM. Reason: typo …

  17. #17
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Can I populate it like this?
    Please Login or Register  to view this content.
    Last edited by Cerkit; 03-10-2020 at 01:49 PM.

  18. #18
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Analysing Array Data

    Administrative Note:

    We would love to help you with your query; however, you need to include code tags around your code.

    Please take a moment to add the tags. Posting code between tags makes your code much easier to read and copy for testing, and it also maintains VBA formatting.

    Please see Forum Rule #2 about code tags and adjust accordingly. Click on Edit to open your post, then highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here

    (Note: this change is not optional. No help to be offered until this moderation request has been fulfilled.)
    HTH
    Regards, Jeff

  19. #19
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Ho do I take the numbers from a column and put them all in one string?

    Thanks

  20. #20
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Analysing Array Data


  21. #21
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi,

    I have managed to use the Concatall, but it does not seem to work when the column is very long, it works for a short column, but for a long column it shows #Value!

    Thanks

  22. #22
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Analysing Array Data

    Not sure I know of a limitation, but how long of a column are your taking about?

  23. #23
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi,

    Around 5000 rows in 1 column.

  24. #24
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Analysing Array Data

    I just tried it with 6000 rows and it works fine. I did see a limitation with around 7000 something rows, but can't remember the number. Check this out.
    Attached Files Attached Files

  25. #25
    Forum Guru
    Join Date
    04-23-2012
    Location
    New Jersey, USA
    MS-Off Ver
    Excel 365
    Posts
    2,416

    Re: Analysing Array Data

    I believe this macro will work with up to 65535 rows of data however it starts to bog down timewise at about 10,000 rows of data or so (depending on the speed of your computer). Based on the code you posted in Message #17, I assumed your list of 0's and 1's is in Column I starting at cell I1 and that the output should go into Columns A and B starting at Row 1.
    Please Login or Register  to view this content.

  26. #26
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi Rick,

    Yes correct all numbers are in column I, its about 55,000 rows. Output in columns A and B.

    Does this code cater for any length of 1s that may appear or will only give outputs for up to a certain length of 1s identified? Is the output adaptable to various lengths of continuous 1s or does it only cater up to a certain number of 1s in a row?

    Thanks

  27. #27
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Analysing Array Data

    Thanks. I have modified this to work in column A.

    The first two lines put test data in column A. These can be deleted.

    Please Login or Register  to view this content.
    Last edited by mehmetcik; 03-11-2020 at 09:35 AM.

  28. #28
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi Mehmetcik,

    Thanks for your help. Is it possible to source the data range from I6:I50000 ?

    Thanks

  29. #29
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Mehmetcik,

    Is it possible to just briefly explain the process of the code?

    I can't work out the method you are using.

    Thanks
    Last edited by Cerkit; 03-11-2020 at 09:40 AM.

  30. #30
    Forum Guru
    Join Date
    04-23-2012
    Location
    New Jersey, USA
    MS-Off Ver
    Excel 365
    Posts
    2,416

    Re: Analysing Array Data

    Quote Originally Posted by Cerkit View Post
    Hi Rick,

    Does this code cater for any length of 1s that may appear or will only give outputs for up to a certain length of 1s identified?
    It handles any length of 1's that may appear. I repeat, though, it will take quite a while to process 55,000 rows (I thought we were dealing with around 5,000). If you knew some maximum number of 1's that it could be, we could use that to shorten the time.

  31. #31
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Analysing Array Data

    Modified to put test array in I6 to I70.

    Once Tested delete rows 1 and two and put your array in range I6 to I150000


    This macro will create a randon array for you.
    Please Login or Register  to view this content.
    Please Login or Register  to view this content.
    [/CODE]

  32. #32
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MO Prof Plus 2016
    Posts
    6,908

    Re: Analysing Array Data

    @ mehmetcik

    A = zero-based so you need this

    Please Login or Register  to view this content.
    to display full Array A.

    Adapted Rick's code to work from I6 to undefined endrange.
    Please Login or Register  to view this content.
    Last edited by bakerman2; 03-11-2020 at 09:57 AM.
    Avoid using Select, Selection and Activate in your code. Use With ... End With instead.
    You can show your appreciation for those that have helped you by clicking the * at the bottom left of any of their posts.

  33. #33
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi Rick,

    Yes apologies, it is a lot of rows to go through.

  34. #34
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Analysing Array Data

    Please Login or Register  to view this content.
    Last edited by mehmetcik; 03-11-2020 at 11:14 AM.

  35. #35
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MO Prof Plus 2016
    Posts
    6,908

    Re: Analysing Array Data

    @ mehmet

    In Post#26 OP talks about 55.000 rows.

    Straight from Microsoft docs.

    The result of the Rept function cannot be longer than 32,767 characters, or Rept returns the #VALUE! error value.

  36. #36
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Analysing Array Data

    Thanks Bakerman

    I have just found another limitation. The join function returns a string of max length 23923 characters.

    So need to find another solution.

    Please wait 10 mins.
    Attached Files Attached Files
    Last edited by mehmetcik; 03-11-2020 at 11:38 AM.

  37. #37
    Forum Guru
    Join Date
    04-23-2012
    Location
    New Jersey, USA
    MS-Off Ver
    Excel 365
    Posts
    2,416

    Re: Analysing Array Data

    I have modified my code (besides making it start at I6 which I missed from an earlier message) and it handled 65000 rows of data in about one second on my somewhat slow laptop. See if it works as well for you. Remember, though, that there is 65355 row limit on what this macro can handle.
    Please Login or Register  to view this content.
    If you are interested, the output from my test run of 65000 rows of data was this...

    Seq of 1 8157
    Seq of 2 4058
    Seq of 3 2032
    Seq of 4 1022
    Seq of 5 520
    Seq of 6 262
    Seq of 7 124
    Seq of 8 60
    Seq of 9 25
    Seq of 10 21
    Seq of 11 8
    Seq of 12 3
    Seq of 13 0
    Seq of 14 1
    Seq of 15 1
    Last edited by Rick Rothstein; 03-11-2020 at 11:28 AM.

  38. #38
    Forum Guru
    Join Date
    04-23-2012
    Location
    New Jersey, USA
    MS-Off Ver
    Excel 365
    Posts
    2,416

    Re: Analysing Array Data

    Quote Originally Posted by mehmetcik View Post
    The join function returns a string of max length 23923 characters.
    Something else must be going on as the code I posted in Message #37 successfully produced a join of 97442 characters for my test of 65,000 rows.

  39. #39
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Analysing Array Data

    Thanks Rick. I found the issue.

    The Application Transpose that I use to simplify addressing seems to bin anything over 23000 entries.
    So my original solution would work without the transpose.


    Ok completely different solution.

    Using a helper column and Excel formulas to avoid Array and Rept limitations.
    This should be faster so I will stick with this.

    Please Login or Register  to view this content.
    Attached Files Attached Files
    Last edited by mehmetcik; 03-11-2020 at 03:54 PM.

  40. #40
    Forum Guru
    Join Date
    04-23-2012
    Location
    New Jersey, USA
    MS-Off Ver
    Excel 365
    Posts
    2,416

    Re: Analysing Array Data

    Here is a different macro (more compact) than the one I posted in Message #37 which seems to execute just as quickly (perhaps even slightly quicker)... we are talking "blink of an eye" quickness here.
    Please Login or Register  to view this content.

  41. #41
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi mehmetcik,

    Hi, My data begins from cell I6 downwards, can I modify this
    Please Login or Register  to view this content.
    to check from I6 downwards?

    Also the code above has a type mismatch error and I haven't modified it.

    Thanks again for all your help.
    Last edited by jeffreybrown; 03-13-2020 at 10:04 AM. Reason: Removed full quote!

  42. #42
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi Rick,

    Your code works really well, caters for all lengths of 1. Is there any chance you could put some comments so I can understand what is going on?

    Much appreciated!
    Last edited by jeffreybrown; 03-13-2020 at 10:04 AM. Reason: Removed full quote!

  43. #43
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi,

    There is also some additional functionality I am looking at. Next to column I in column H I have some additional data, that is days of the week. Is there a way that I could have an additional counter of sorts so that I can also know the days which correspond to certain frequencies of 1s. For example for input data below:
    Please Login or Register  to view this content.
    So in the results I would still have the frequencies but to also have additional output by day? So something similar to the following output:

    Frequency results:

    Please Login or Register  to view this content.
    I'm not fussed if there is overlap between days, so if a set of 1s fell between Tuesday and Wednesday I would allocate it to the day where the set started (that being Tuesday).

    Thank you

  44. #44
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Analysing Array Data

    Hi Cerkit,

    Please don't quote whole posts -- it's just clutter.*If you are responding to a post out of sequence, limit quoted content to a few relevant lines that makes clear to whom and what you are responding

  45. #45
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi jeffreybrown,

    Ok will do, apologies.

  46. #46
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi Rick,

    Thank you for the code, works perfectly. Could you please help me understand what the following line in your code does?

    Please Login or Register  to view this content.
    Thanks

  47. #47
    Forum Guru
    Join Date
    04-23-2012
    Location
    New Jersey, USA
    MS-Off Ver
    Excel 365
    Posts
    2,416

    Re: Analysing Array Data

    Quote Originally Posted by Cerkit View Post
    Thank you for the code, works perfectly. Could you please help me understand what the following line in your code does?
    Please Login or Register  to view this content.
    I replaced the line of code you asked about in my quote above with the complete loop as they are tied together. The code comes from way back (more than 16 years ago) in my volunteering days for the compiled version of Visual Basic (the version prior to what Microsoft now calls Visual Basic, originally known as Visual Basic DotNet). What those numbers do is guarantee to reduce multiple contiguous characters (usually, spaces) within a text string down to single characters. For spaces, it performs the same function as Excel's TRIM worksheet function (except for removing any resulting leading or trailing spaces... it does not do that), although it can be used on any character delimiter. Given that VBA gives you access to Excel's TRIM function via the WorksheetFunction object, you may wonder why I did not simply use that. While the Evaluate function along with WorksheetFunction.Transpose, WorksheetFunction.Index, etc. can handle 65,535 rows of data, WorksheetFunction.Trim appears to be limited to being able to handle a text string of 32767 total characters or less. If I remember right, you said you had 50,000 or so rows of data, so when I combined them into a single text string and replaced the 0's with spaces, it was too long for the Excel's TRIM function to handle. The loop I ended up using can successfully collapse multiple spaces to single spaces in a text string of up to 64,570,080 total original characters in length. Now, where did those numbers come from you might ask. I cannot take credit for developing them although I tracked the original newsgroup (precessessor to Forums) thread in real time back then. Here is a direct link to the message where those numbers were proposed...

    https://groups.google.com/d/msg/micr...U/eMg5CWUBge0J

    If you scroll up to the top, you can see the question that started this thread and then read each message under it in order to see how the final numbers grew to be developed.
    Last edited by Rick Rothstein; 03-16-2020 at 04:38 PM.

  48. #48
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Thank you for the info Rick.

    Mehmetcik, with your code do you think it is possible to track the days of the week as well or will I need to form a 2 column array and populate it with the data?

  49. #49
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi Mehmetcik,

    Regarding the latest code:

    Please Login or Register  to view this content.
    I need it to use the values in column I though, is this no longer possible without Transpose?

    Thanks

  50. #50
    Forum Contributor
    Join Date
    04-11-2013
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Analysing Array Data

    Hi All,

    Can anyone advise on what a good method might be for me to achieve the outputs of sequence of 1's but the outputs being by Day (referenced to the adjacent column)?

    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. Analysing multiple values in an array
    By Mark_G_ in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-10-2019, 03:33 AM
  2. Help Analysing Data using Excel
    By humdiddydum in forum Excel General
    Replies: 2
    Last Post: 09-27-2017, 09:24 AM
  3. Analysing and Interpreting Data
    By Ov3rW4tch in forum Excel General
    Replies: 6
    Last Post: 05-17-2017, 04:58 PM
  4. Cross Analysing data
    By Mattg121 in forum Excel General
    Replies: 1
    Last Post: 01-20-2015, 07:08 AM
  5. Looking up and analysing duplicate data
    By JONNY981 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 11-18-2009, 09:57 AM
  6. Analysing data
    By i_ujala in forum Excel General
    Replies: 1
    Last Post: 04-08-2007, 05:29 AM
  7. [SOLVED] Analysing data through pivot
    By Chris in forum Excel General
    Replies: 3
    Last Post: 01-09-2006, 11:45 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