select giftid
max(giftamount)as Largest Gift,
max(giftdate) as most recent date,
min(giftamount)as Smallest Gift,
min(giftdate) as first date
I am trying to find the following
largest gift amount
Date of Largest gift amount
First gift amount
Date of First gift amount
Last gift amount
Date of Last Gift amount
Last 10 gift gifts
Date of Last 10 gifts
will I need to do a row() function?
max(giftamount)as Largest Gift,
max(giftdate) as most recent date,
min(giftamount)as Smallest Gift,
min(giftdate) as first date
I am trying to find the following
largest gift amount
Date of Largest gift amount
First gift amount
Date of First gift amount
Last gift amount
Date of Last Gift amount
Last 10 gift gifts
Date of Last 10 gifts
will I need to do a row() function?