I have a small macro and within that macro I need to grab 16 digits out of a string of mixed characters and numbers. So as an example I need the first 16 digits after;
ZA874635496587695854768969780456
and this copies down the entire column. .Range("B2:B" & .Cells(.Rows.Count, "A").End(xlUp).Row).Formula = "=MID(A2,3,16)" The problem is, it only grabs 15 numbers and gives me a zero for the 16th. I have tried increasing the amount of numbers and it always pulls 15 and then spits out zeros???
Any insight would be appreciated.
Thanks!
Bookmarks