Viewing 3 posts - 1 through 4 (of 4 total)
Looks like it worked thanks for all your help!!!!
January 28, 2008 at 1:43 pm
Declare @Date char(8), @CurrentMonth int, @LengthFutureMonth int, @FutureMonth char(2), @Year char(4), @FinalDate1 char(8), @FinalDate2 char(8)
Set @Date = (select dateidentifier from tbldonoterase)
Set @Year = Left(@Date, 4)
Set @CurrentMonth = right(Left(@Date,6), 2)
Set...
January 28, 2008 at 12:15 pm
Declare @rundate char(8)
set @rundate = (select dateidentifier from dbo.tbldonoterase)
This is the date from the previous day inwhich we run reports. I'm using this as the way to get the month...
January 28, 2008 at 11:49 am
Viewing 3 posts - 1 through 4 (of 4 total)