Mar 16, 2011 #1 Sahubba Programmer Joined Mar 16, 2011 Messages 108 Location US Does any one know how can I do this Sql Statement as a formulla? row_number() over (partition by pat_enc_csn_id, Event_Display_Name order by event_time) as rownum Thanks
Does any one know how can I do this Sql Statement as a formulla? row_number() over (partition by pat_enc_csn_id, Event_Display_Name order by event_time) as rownum Thanks
Mar 16, 2011 #2 IanWaterman Programmer Joined Jun 26, 2002 Messages 3,511 Location GB My Oracle SQl is not that good. What does it do in laymans terms, there might be a similar function in Crystal possibly Previous() or Next(). Ian Upvote 0 Downvote
My Oracle SQl is not that good. What does it do in laymans terms, there might be a similar function in Crystal possibly Previous() or Next(). Ian
Mar 16, 2011 Thread starter #3 Sahubba Programmer Joined Mar 16, 2011 Messages 108 Location US Hello Ian, it basicly gives me the first time of the event display name. I tried to use the previous or next and it did not work because my issues are within a group. Thanks for responding. Upvote 0 Downvote
Hello Ian, it basicly gives me the first time of the event display name. I tried to use the previous or next and it did not work because my issues are within a group. Thanks for responding.
Mar 16, 2011 #4 IanWaterman Programmer Joined Jun 26, 2002 Messages 3,511 Location GB Add a new group based on display name field. Sort you data in data time ascending, then move all you data from detail into Group header and suppress details and new group footer. Ian Upvote 0 Downvote
Add a new group based on display name field. Sort you data in data time ascending, then move all you data from detail into Group header and suppress details and new group footer. Ian
Mar 16, 2011 Thread starter #5 Sahubba Programmer Joined Mar 16, 2011 Messages 108 Location US I wish it was that easily, unfortunately if I do that the report won’t be right. But thank you! Upvote 0 Downvote