how i can make it?

SBAY3I

Board Regular
Joined
Jul 21, 2018
Messages
53
hello all members
i got some problems in excel. one of them is i want to make

72653/m/17 like that ***53/m/17
101371/f/17 like that ****71/f/17
72673/m/17 like that ***73/m/17
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi,

Another way, in case the length of characters are variable after the slash "/"


Book1
AB
172653/m/17***53/m/17
2101371/f/17****71/f/17
372673/m/17***73/m/17
472653/mf/17***53/mf/17
5101371/f/171****71/f/171
672673/mf/171***73/mf/171
Sheet137
Cell Formulas
RangeFormula
B1=REPT("*",LEN(LEFT(A1,FIND("/",A1)-3)))&MID(A1,FIND("/",A1)-2,255)
 
Upvote 0
thank you very much friends for your help
by the way the the colomn was in three colomn and i make them like that 72653/m/17
are your formulas can help me in this casse
****** id="cke_pastebin" style="position: absolute; top: 0px; width: 1px; height: 1px; overflow: hidden; left: -1000px;">
AB
172653/m/17***53/m/17
2101371/f/17****71/f/17
372673/m/17***73/m/17
472653/mf/17***53/mf/17
5101371/f/171****71/f/171
672673/mf/171***73/mf/171

<thead>
</thead><tbody>
</tbody>
</body>
 
Upvote 0
Please explain clearly,

Are you saying 72653/m/17 is in three separate columns Without the slash "/"?
So 72653 in A1, m in B1, 17 in C1?
And, you want the result to be ***53/m/17 in One Cell With the slash "/"?
 
Upvote 0
assume A1 for number then ="***" & RIGHT(A1,2)
 
Upvote 0
NO I MEAN 72653 WAS IN A1, AND M WAS IN B1, AND 17 WAS IN C1, AND I MAKE THEM IN ONE CELL LIKE 72653/M/17 WITH THIS FORMULA =A1&"/"&B1&"/"&C1
WHAT I WANT IS ***53/m/17 in One Cell With the slash "/" BUT I THINK THE FORMULA WHICH I PUT BEFOR BLOCKING YOURS =REPT("*",LEN(LEFT(A1,FIND("/",A1)-3)))&MID(A1,FIND("/",A1)-2,255)
 
Upvote 0
Then do this:


Book1
ABCD
172653m17***53/m/17
2101371f17****71/f/17
372673m17***73/m/17
472653mf17***53/mf/17
5101371f171****71/f/171
672673mf171***73/mf/171
Sheet137
Cell Formulas
RangeFormula
D1=REPT("*",LEN(A1)-2)&RIGHT(A1,2)&"/"&B1&"/"&C1


D1 formula copied down.
 
Upvote 0

Forum statistics

Threads
1,213,524
Messages
6,114,117
Members
448,549
Latest member
brianhfield

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