December 9, 2015 at 12:13 pm
Comments posted to this topic are about the item Create a function to Check the Bloomberg "BBGID" format in SQL Server
December 16, 2015 at 6:23 am
I'm not familiar with what this is but the script looks like an interesting exercise to go through.
December 16, 2015 at 6:37 am
The checksum formula is handy if you want to ensure that an identifier is valid. This is the most common "mod 10" formula, using a variation of the Luhn algorithm. So, there are many possible uses for this type of function... at least as a template.
December 16, 2015 at 7:24 am
This should be ported to excel given the community it most likely to be used by.
Good work. Thanks.
412-977-3526 call/text
December 16, 2015 at 8:52 am
A bit of nit-picking for improvement:
Instead of using SUBSTRING to retrieve the last character why one simply use RIGHT(<expr>, 1) ?
April 25, 2016 at 4:55 pm
Interesting extra comments.
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply