Bullsandbears123
Technical User
The challenge is this.
You have data in a table with two fields "appdate" and "text"
[appdate] [text]
1/1/2004 DTD
1/1/2004 MTD
1/30/2004 DTD
1/30/2004 MTD
1/31/2004 DTD
1/31/2004 MTD
2/5/2004 DTD
2/5/2004 MTD
2/29/2004 DTD
2/29/2004 MTD
The goal is to display all the records that have DTD, but only the MTD records that have date on the last day of any given month.
SO the Query should give you this....
[appdate] [text]
1/1/2004 DTD
1/30/2004 DTD
1/31/2004 DTD
1/31/2004 MTD
2/5/2004 DTD
2/29/2004 DTD
2/29/2004 MTD
Any ideas? I'm stumped.
You have data in a table with two fields "appdate" and "text"
[appdate] [text]
1/1/2004 DTD
1/1/2004 MTD
1/30/2004 DTD
1/30/2004 MTD
1/31/2004 DTD
1/31/2004 MTD
2/5/2004 DTD
2/5/2004 MTD
2/29/2004 DTD
2/29/2004 MTD
The goal is to display all the records that have DTD, but only the MTD records that have date on the last day of any given month.
SO the Query should give you this....
[appdate] [text]
1/1/2004 DTD
1/30/2004 DTD
1/31/2004 DTD
1/31/2004 MTD
2/5/2004 DTD
2/29/2004 DTD
2/29/2004 MTD
Any ideas? I'm stumped.