how to get unique Id based on data in multiple coloum

beinggovinda

New Member
Joined
Aug 9, 2015
Messages
17
I want to generate unique Id in column B, based on data in column C, D , E , F.
I want first letter of Column C, first 2 letters of column F then all the digits of coumn E (digits only without . dot). can anyone please help?

ABCDEF
sl nounique idnamecontactdobfather name
1ramesh986575689112.04.89madhav
2james879865978516.07.91mathew
3shashank987659861515.10.95manav
4dileep568759865401.02.90vikash
5

<tbody>
</tbody>


<colgroup><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Hi,

very ez.

In B2 then copy down :

=LEFT(C2,1)&LEFT(F2,2)&SUBSTITUTE(E2,".","")
 
Last edited:
Upvote 0
and what if i want first 4 letters of Column C, last 6 letters of column D then first 4 digits of coumn E (digits only without . dot).
 
Upvote 0

Forum statistics

Threads
1,214,938
Messages
6,122,346
Members
449,080
Latest member
Armadillos

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