Viewing 4 posts - 1 through 5 (of 5 total)
Lynn,
The posted solution seems to do the trick...thanks so much!
September 7, 2014 at 3:43 pm
Hi Lynn,
If there are only 2 then it's just ignored. Three is the magic number! 🙂
September 7, 2014 at 3:15 pm
Thanks for responding Lynn! Below is a small test case.
CREATE TABLE [dbo].[ActivityTable](
[CompanyId] [int] NULL,
[CompanyName] [varchar](20) NULL,
[ActivityDate] [date] NULL
) ON [PRIMARY]
GO
insert into ActivityTable values(1,'ABC','2014-08-01')
insert into ActivityTable values(1,'ABC','2014-08-03')
insert into ActivityTable values(1,'ABC','2014-08-10')
insert into...
September 7, 2014 at 2:58 pm
I figured it out...never mind! 🙂
July 13, 2014 at 9:45 am
Viewing 4 posts - 1 through 5 (of 5 total)