Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Say I have a field called account number and it is "12398760234535345" but I want to convert it into "123-9876-023" in the script area. How would I do that?
Data is coming from excel, I would change the edited data to [Account Number] AS Account_Number
Hi, with the combination of the Left() and Mid() string functions as below.
Left([Account Number],3)&'-'&Mid([Account Number],4,4)&'-'&Mid([Account Number],8,3) as Account_Number
Hi, with the combination of the Left() and Mid() string functions as below.
Left([Account Number],3)&'-'&Mid([Account Number],4,4)&'-'&Mid([Account Number],8,3) as Account_Number
Thank you so very much for your help!