Hello Friends, need help with a macro.

Bishoptrue

New Member
Joined
Jan 4, 2019
Messages
2
Hello folks, here is what I am trying to do. I have a column of numbers like this:

091215421R

And I need each cell in the column to be formatted like this:

Q09-1215421

There are always 10 characters in the original cell. The last character may be anything but needs to be dropped. A capital Q must be inserted at the beginning, and a hyphen as the fourth character after the Q and the fist two numbers.

Is this possible? Thank you in advance for your kind consideration.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
If the numbering is the same for each cell use

Code:
="Q" & LEFT(A1,2)&"-"&MID(A1,3,7)
 
Upvote 0

Forum statistics

Threads
1,215,544
Messages
6,125,434
Members
449,223
Latest member
Narrian

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