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

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
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,523
Messages
6,120,028
Members
448,940
Latest member
mdusw

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