September 29, 2007 at 10:38 pm
Comments posted to this topic are about the item How to Calculate Bank Routing Check Digit
April 11, 2008 at 11:04 pm
You can shrink this down quite a bit...
[font="Courier New"] CREATE FUNCTION CreateABACheckDigit
--===== Created by Jeff Moden
(@RoutingNumber CHAR(8))
RETURNS INT
AS
BEGIN
RETURN (SELECT NULLIF(10-( SUBSTRING(@RoutingNumber,1,1)*3
+ SUBSTRING(@RoutingNumber,2,1)*7
+ SUBSTRING(@RoutingNumber,3,1)*1
+ SUBSTRING(@RoutingNumber,4,1)*3
+ SUBSTRING(@RoutingNumber,5,1)*7
+ SUBSTRING(@RoutingNumber,6,1)*1
+ SUBSTRING(@RoutingNumber,7,1)*3
+ SUBSTRING(@RoutingNumber,8,1)*7)%10
,10))
END
[/font]
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply