Hi,
I have two separate date field like this:
A
6/30/2014
9/30/2014
12/31/2014
3/31/2015
6/30/2015
B
10/26/2014
1/15/2015
Then I want to join the two based on whether the B date is within the range of A. So the result should be like:
A B
6/30/2014
9/30/2014
12/31/2014 10/26/2014
3/31/2015 1/15/2015
6/30/2015
How can I make this happen????
Best,
Blake