Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 8074 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

You can also use this formula to convert a numeric serial number into an alphanumeric type:

Middle("ABCDEFGHIJKLMNOPQRSTUVWXYZ",1+ Mod(Int(SerialNo/676000),26), 1) &

Middle("ABCDEFGHIJKLMNOPQRSTUVWXYZ",1+ Mod(Int(SerialNo/26000),26), 1) &

Middle("ABCDEFGHIJKLMNOPQRSTUVWXYZ",1+ Mod(Int(SerialNo/1000),26), 1) &

Middle("0123456789",1+ Mod(Int(SerialNo/100),10), 1) &

Middle("0123456789",1+ Mod(Int(SerialNo/10),10), 1) &

Middle("0123456789",1+ Mod(SerialNo,10), 1)

Posted

This is what I've done some time ago.

HOLY CRAP that's cool... It could take me a lifetime to figure out how it works but that's another story.

Thanks!

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.