Viewing 2 posts - 1 through 2 (of 2 total)
Here is an equivalent of Excel's NORMSDIST function (wrote for SYbase 12.5):
IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = 'GET_NORMSDIST')
BEGIN
PRINT 'Dropping Procedure GET_NORMSDIST'
...
September 27, 2006 at 3:01 am
#662666
Thank you for NORMSINV function ! It's work !!
Here is a SQL code for SYBASE 12.5 version:
IF EXISTS
(SELECT * FROM sysobjects...
September 26, 2006 at 11:35 am
#662546