Hello Everyone,
I am working on a report that is just driving me NUTs!!! Any help is appreciating.
This is a high level explanation with picture to help:
Data:
Table name: Dialysis Information
Patient name: Crayola, Red
Dialysis_ID (unique) Start_date End_date
1346 3/1/2010 0:00 4/6/2010 0:00
1456 10/11/2010 0:00 11/3/2010 0:00
1238 4/6/2010 0:00 8/5/2010 0:00
1145 8/5/2010 0:00 10/11/2010 0:00
I would like to show the last dialysis start date (max), but more important display the corresponding end_date – regardless if it is null
A solutions I’ve found to work: Sorting record by start date in ascending order and displaying start and end date.
But I wanted to get a more solid and intuitive solution -where if I created a running totals that happens to display a mid- answer of start-date: 4/6/2010 0:00 in the footer section and wanted to display its corresponding end_date: 8/5/2010 0:00 in this same section, how would I can I do this? The footer section only shows the last record in the table.
I am working on a report that is just driving me NUTs!!! Any help is appreciating.
This is a high level explanation with picture to help:
Data:
Table name: Dialysis Information
Patient name: Crayola, Red
Dialysis_ID (unique) Start_date End_date
1346 3/1/2010 0:00 4/6/2010 0:00
1456 10/11/2010 0:00 11/3/2010 0:00
1238 4/6/2010 0:00 8/5/2010 0:00
1145 8/5/2010 0:00 10/11/2010 0:00
I would like to show the last dialysis start date (max), but more important display the corresponding end_date – regardless if it is null
A solutions I’ve found to work: Sorting record by start date in ascending order and displaying start and end date.
But I wanted to get a more solid and intuitive solution -where if I created a running totals that happens to display a mid- answer of start-date: 4/6/2010 0:00 in the footer section and wanted to display its corresponding end_date: 8/5/2010 0:00 in this same section, how would I can I do this? The footer section only shows the last record in the table.