Each month I receive a spreadsheet that has one circuit ID on it. The Circuit ID needs to be formatted the same way. When I receive the circuit ID's they need to be in the format - "BREC.123456..ATI" . The circuit IDs are now arriving as "BREC123456..ATI". There is no "." after the letter "C". I would like to place a "." after the fourth letter of every circuit ID in a column. In this case there is only one circuit ID.
when I run my code I receive the following error: #VALUE!
A member of the board helped me with the above code. when I run it in another workbook it works great. I copied it to my current workbook and it no longer works, and I get an error. The worksheets have the same names as I copied and pasted them from my original workbook to the one i am using now.
If anyone would be kind enough take a look at the code to see what I am doing wrong, I would appreciate it.
I have attached a picture of the worksheet i am using for review.
Thank you in advance for your time and help.
when I run my code I receive the following error: #VALUE!
VBA Code:
With Sheets("Load Tbl-ACU Broadband Cir").Range("S2:S" & Sheets("Load Tbl-ACU Broadband Cir").Cells(Rows.Count, "S").End(xlUp).Row)
.Value = Evaluate("LEFT(" & .Address(, , , 1) & ",4)&""."" & RIGHT(" & .Address(, , , 1) & ",LEN(" & .Address(, , , 1) & ")-4)")
End With
A member of the board helped me with the above code. when I run it in another workbook it works great. I copied it to my current workbook and it no longer works, and I get an error. The worksheets have the same names as I copied and pasted them from my original workbook to the one i am using now.
If anyone would be kind enough take a look at the code to see what I am doing wrong, I would appreciate it.
I have attached a picture of the worksheet i am using for review.
Thank you in advance for your time and help.