Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
row1.Column1
row1.Column1 = 06232012
1651722
row1.BILL_DATE.length() != 8 ? "" : Integer.parseInt((
row1.BILL_DATE.substring(4, 4) +
row1.BILL_DATE.substring(0, 2) +
row1.BILL_DATE.substring(2, 2)
))
(String.valueOf(06232012))
parseDate("MMddyyyy",(String.valueOf(06232012)))
formatDate("yyyyMMdd",parseDate("MMddyyyy",(String.valueOf(06232012))))