Hi,
I have a table with a field, [Product]. The Product data comes in the form, # Description. Examples: 00100 Strawberry, 001234 Kiwi, 012345 Apple
The info I want to pull from that field is the 100, 1234 and 12345, then I want to add on three 000 at the end, so the final result is 100000, 1234000, 12345000.
At first I had the following, but then I realized it doesn't produce the right results for all the products.
Format(Left([Product], 5) & "000", "General Number") AS [Item]
Thanks in advance!!
I have a table with a field, [Product]. The Product data comes in the form, # Description. Examples: 00100 Strawberry, 001234 Kiwi, 012345 Apple
The info I want to pull from that field is the 100, 1234 and 12345, then I want to add on three 000 at the end, so the final result is 100000, 1234000, 12345000.
At first I had the following, but then I realized it doesn't produce the right results for all the products.
Format(Left([Product], 5) & "000", "General Number") AS [Item]
Thanks in advance!!