How to convert word into number

Inacio11

New Member
Joined
Jul 3, 2018
Messages
33
Hi,

I'm trying create unique ID's based on some arguments, such as: date, value, name:
Date: 04/01/2019
Value: -10,13
Name: SKEMA

** Which formula I should to use to convert the word "SKEMA" into a number ? And which formula I could to use to generate a code based on these elements ?
Thanks !
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Hi,

you can use TEXTJOIN function like =TEXTJOIN("_",TRUE,C5:C7). Outcome will be 43469_-1013_SKEMA. It will create a unique id for each row.

Cheers!!!
 
Upvote 0
Hi.

I have the answer BUT clarify these issues TO GET PROPER RESPONSES:

Where are these Dates, Values, Names?? in one cell OR different cells??

From the 3, HOW DO YOU WANT your code to look like?? ( Date-Value-Names, Date Value Names etc)??
 
Upvote 0
ASSUMING: DATE, VALUE, NAME ARE IN CELLS A2, B2 & C2 in that order,
Simply CONCATENATE As:

=A2&" - "&B2&" - "&C2

(Change" - " TO SUIT YOUR EXPECTATIONS)
 
Upvote 0
Hello all
Thanks for the support. The proposals gave me ideas to solve the issue. Thanks very much !
Jeferson
 
Upvote 0

Forum statistics

Threads
1,214,971
Messages
6,122,525
Members
449,088
Latest member
RandomExceller01

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