Forum Discussion
laj_16
Mar 02, 2023Copper Contributor
GENERATED ID GETTING GETTING DEDUCTED
I HAVE THIS PROBLEM WITH MY PROJECT. I created a unique ID in excel with this code: but whenever 99,&999 comes the zero (0) is being deducted like the picture below. I'm...
- Mar 02, 2023There 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")
FikturFox
Mar 02, 2023Brass Contributor
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")
Here's an alternative formula you may try:
=TEXT(ROW()-1,"LU000000")
- laj_16Mar 02, 2023Copper Contributor
thank you sir. I found also a new way which is almost the same as yours.
="LU"&TEXT(ROW(B1),"0000000")