Obtain Data From Data Set

SailRCG
edited February 11, 2022 in Analytics #1
Hi,

I am trying to get data from a specific / named Data Set, into a class that I am writing. Can someone provide some example of doing this? I am particularly interested in creating a List Object with two columns "Time" and "Observation" producing an output something like:
(Time , Observation),("Q3 08", 6),("Q4 08", 5),("Q1 09", 6),("Q2 09", 4)

This represents the table from a simple Data Set:
| Time | Observation |
| "Q3 08" | 6 |
| "Q4 08" | 5 |
| "Q1 09" | 6 |
| "Q2 09" | 4 |


Thanks,

RG

Comments

  • mwilliams
    edited December 31, 1969 #2
    Hi RG,

    So, you want to step through the data in your dataSet in a class file so you can create an array out of it? What will be the use of this array?
    Warning No formatter is installed for the format ipb
  • SailRCG
    edited December 31, 1969 #3
    Mr Williams,

    I am reconsidering the way I am going to do this... So, rather than getting information from a report data set, I think I'll get the information into my class from an Information Object.

    But, I'll still need to figure that out too.

    Do you have any ideas? Maybe an example even?

    Thanks,

    RG