Okay, a relatively easy proposition has led to several days of frustration.
I have two columns with similar date ranges. I need to do a summary comparison returning the total number of hits for each column. I also need to account for those instances where two dates occur for the same row(unique ID), counting the date for the column with the most recent date, and not counting the date for the column with the older date.
I have tried implementing an "if ({date1})>({date2}) then true else false" and then developing a count formula to tally the number of true... but it keeps counting false as well. I had set up the counting formula as follows: "if (@date1) = true then count(@date1),(@group)"
Any help would be appreciated. SQL database and Crystal 9. Thanks in advance!
I have two columns with similar date ranges. I need to do a summary comparison returning the total number of hits for each column. I also need to account for those instances where two dates occur for the same row(unique ID), counting the date for the column with the most recent date, and not counting the date for the column with the older date.
I have tried implementing an "if ({date1})>({date2}) then true else false" and then developing a count formula to tally the number of true... but it keeps counting false as well. I had set up the counting formula as follows: "if (@date1) = true then count(@date1),(@group)"
Any help would be appreciated. SQL database and Crystal 9. Thanks in advance!