Hi,
I use CR XI with the source data read from am XML file using XML native driver. I need to create a report that needs to calculate the time elapsed in the PASS status and Fail status
Sample Data is shown below:
[data]
Timestamp Status
3/28/2007 1:00:00AM Pass
3/28/2007 2:00:00AM Pass
3/28/2007 3:00:00AM Pass
3/28/2007 4:00:00AM Pass
3/28/2007 5:00:00AM Pass
3/28/2007 6:00:00AM Pass
3/28/2007 7:00:00AM Fail
3/28/2007 8:00:00AM Fail
3/28/2007 9:00:00AM Fail
3/28/2007 9:09:00AM Pass
3/28/2007 10:00:00AM Pass
3/28/2007 11:00:00AM Pass
3/28/2007 12:00:00PM Pass
3/28/2007 1:00:00PM Fail
3/28/2007 1:43:00PM Pass
3/28/2007 2:00:00PM Pass
3/28/2007 3:00:00PM Pass
[/data]
For example, to start with, the PASS status existed for 6 hours before the Fail status which lasted for 2 hrs and 9 minutes. Then the PASS status is on for 3 hrs and 51 mts, Fail for the next 43 mts and Pass for 1 hr and 17 mts. The report also needs to summarize the total Fail and Pass periods and also the Fail period as a percentage of Total period. This also needs to be summarized for each node. Once the data is grouped by node, I think the grouping can take care of the values within that node. The data here shows only one node information. The Pass period is from Min(Pass time) to min(next fail time).
I looked at running totals and started with a formula @timedifference that calculates the time elapsed between two consecutive entries. For this I had to use PREVIOUS function that does not allow the formula to be used in Running totals. The Timestamp field is a datetime variable.
I would appreciate any suggestions on how to proceed with this report.
Thank you for your help.
I use CR XI with the source data read from am XML file using XML native driver. I need to create a report that needs to calculate the time elapsed in the PASS status and Fail status
Sample Data is shown below:
[data]
Timestamp Status
3/28/2007 1:00:00AM Pass
3/28/2007 2:00:00AM Pass
3/28/2007 3:00:00AM Pass
3/28/2007 4:00:00AM Pass
3/28/2007 5:00:00AM Pass
3/28/2007 6:00:00AM Pass
3/28/2007 7:00:00AM Fail
3/28/2007 8:00:00AM Fail
3/28/2007 9:00:00AM Fail
3/28/2007 9:09:00AM Pass
3/28/2007 10:00:00AM Pass
3/28/2007 11:00:00AM Pass
3/28/2007 12:00:00PM Pass
3/28/2007 1:00:00PM Fail
3/28/2007 1:43:00PM Pass
3/28/2007 2:00:00PM Pass
3/28/2007 3:00:00PM Pass
[/data]
For example, to start with, the PASS status existed for 6 hours before the Fail status which lasted for 2 hrs and 9 minutes. Then the PASS status is on for 3 hrs and 51 mts, Fail for the next 43 mts and Pass for 1 hr and 17 mts. The report also needs to summarize the total Fail and Pass periods and also the Fail period as a percentage of Total period. This also needs to be summarized for each node. Once the data is grouped by node, I think the grouping can take care of the values within that node. The data here shows only one node information. The Pass period is from Min(Pass time) to min(next fail time).
I looked at running totals and started with a formula @timedifference that calculates the time elapsed between two consecutive entries. For this I had to use PREVIOUS function that does not allow the formula to be used in Running totals. The Timestamp field is a datetime variable.
I would appreciate any suggestions on how to proceed with this report.
Thank you for your help.