SOLVED

GENERATED ID GETTING GETTING DEDUCTED

Copper Contributor

I HAVE THIS PROBLEM WITH MY PROJECT.

 

I created a unique ID in excel with this code:

laj_16_0-1677738027136.png

but whenever 99,&999 comes the zero (0) is being deducted like the picture below.

 

laj_16_1-1677738126660.png

laj_16_2-1677738150005.png

 

I'm wondering if what is the problem with my code

2 Replies
best response confirmed by laj_16 (Copper Contributor)
Solution
There is no problem with the formula. It is executing it correctly, but perhaps with the logic.
Here's an alternative formula you may try:
=TEXT(ROW()-1,"LU000000")

thank you sir. I found also a new way which is almost the same as yours.

="LU"&TEXT(ROW(B1),"0000000")

1 best response

Accepted Solutions
best response confirmed by laj_16 (Copper Contributor)
Solution
There is no problem with the formula. It is executing it correctly, but perhaps with the logic.
Here's an alternative formula you may try:
=TEXT(ROW()-1,"LU000000")

View solution in original post