G Guest Aug 7, 2006 #1 How can I extract the 1st 4 digits from a string, eg 20040506, So i'm left with 2004. Thanks David
R RoyVidar Aug 7, 2006 #2 bradasley said: How can I extract the 1st 4 digits from a string, eg 20040506, So i'm left with 2004. Thanks David Click to expand... The Left function should do. Left$("20040506", 4)
bradasley said: How can I extract the 1st 4 digits from a string, eg 20040506, So i'm left with 2004. Thanks David Click to expand... The Left function should do. Left$("20040506", 4)