ADDING A "." AFTER THE FOURTH LETTER and RECEIVING AN ERROR #VALUE!

Chris101

New Member
Joined
Feb 17, 2023
Messages
28
Office Version
  1. 365
Platform
  1. Windows
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!

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.
 

Attachments

  • circuit id.png
    circuit id.png
    117.8 KB · Views: 8

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
For the sample data in your image, what cell/s is/are the #VALUE! error appearing in.

BTW, please review #14 of the Forum Rules in relation to thread titles in all upper case.
 
Upvote 0
The error appears in cell "S2".

My apologies for using shouty caps. It won't happen again.
 
Upvote 0
My apologies for using shouty caps. It won't happen again.
Cheers, thanks.

The error appears in cell "S2".
I have not been able to reproduce the error in that cell after manually entering that sample data in S1:S2

Clearly we do not have your full code, perhaps it might be worth posting that in case the error somehow relates to the rest of the code.

Have you tried closing right out of Excel altogether and opening up again & trying?

If still getting the problem can you give us the sample data with XL2BB?
 
Upvote 0
Cheers, thanks.


I have not been able to reproduce the error in that cell after manually entering that sample data in S1:S2

Clearly we do not have your full code, perhaps it might be worth posting that in case the error somehow relates to the rest of the code.

Have you tried closing right out of Excel altogether and opening up again & trying?

If still getting the problem can you give us the sample data with XL2BB?
Thank you for your time.

I did close out of excel and reopened it. I still get the same error.

Yes, of course I can give you the data with XL2BB. if you don't mind, I will provide the data tomorrow. I will download XL2BB in the morning so you can see what I have done.

I do appreciate your time and assistance.
 
Upvote 0
Cheers.
BTW, I would simplify the Evaluate line to this
VBA Code:
.Value = Evaluate("replace(" & .Address & ",4,0,""."")")
 
Upvote 0
Solution
Cheers.
BTW, I would simplify the Evaluate line to this
VBA Code:
.Value = Evaluate("replace(" & .Address & ",4,0,""."")")
Peter_SSs:, It worked. When you said to close out of excel, it dawned on me that the worksheet is actually downloaded from AT&T and i used the AT&T worksheet for my code. There must be something with the AT&T worksheet that triggers the error. I say that because I took the data and code and moved it to a new workbook. and it worked great.

also, your simplification of the code worked great.

You have solved my problem. Thank you very much for your assistance, time and knowledge.

Best Regards,
Chris
 
Upvote 0
You're welcome. Glad it has worked out now. :)
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top