Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Replace a number

Status
Not open for further replies.

gabydrdoom

Programmer
Jul 1, 2020
12
0
1
RO

Hello
How do I replace a number with a string that has the last number identical to the number

Example:

Excel1
NR
1
1
1
2
2
2
3
3
3

Excel2
INT
int_RR_001
int_RR_002
int_RR_003
int_RR_004
int_RR_005

Thanks
 
The result will be form:

Excel3
Nr
int_RR_001
int_RR_001
int_RR_001
int_RR_002
int_RR_002
int_RR_002
int_RR_003
int_RR_003
int_RR_003
etc...
 
Gabydrdoom,

The result of
Code:
TRANSFORM(theSourceOfTheNumber, "@RL int_RR_999")
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top