Viewing 3 posts - 1 through 3 (of 3 total)
This function produces the same result as the ms excel FORECAST function, although the range must be supplied in a delimited string (x,y:x,y...ect):
July 10, 2009 at 11:47 am
I use this method when I need a dynamic solution:
use AdventureWorks2000
go
if exists(select * from sysobjects where id = object_id('dbo.proc_dynamic') and type = 'P')
drop procedure dbo.proc_dynamic
go
create procedure dbo.proc_dynamic
@name varchar(50)
as
begin
select LocationId, [Name],...
July 9, 2008 at 2:56 pm
You really are a veteran. I've never run into that problem before but it makes sense. Thanks for the help!
March 11, 2005 at 3:37 pm
Viewing 3 posts - 1 through 3 (of 3 total)