Forum Discussion
MarkShnier__You
Qrew Legend
2 years agoNothing like a little brainteaser in the morning.
try this
var number Input = [Raw Number]; // insert your field name here
var number Integer = Int($Input);
var number Decimal = $Input - $Integer;
var text FirstFour = PadLeft(ToText($Integer),4,"0000");
var text LastFive = PadRight(Left(SearchAndReplace(ToText($Decimal),"0.",""),5),5,"00000");
$FirstFour & $LastFive
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
- JamieStrauss2 years agoQrew Member
THANK YOU! It's ALMOST working! But right at the end, $FirstFour & $LastFive is highlighted saying a number was expected but found text. Maybe I need to change the field type? I have formula numeric
------------------------------
Jamie Strauss
------------------------------- MarkShnier__You2 years ago
Qrew Legend
The field type needs to be formula text because it has leading zeros and trailing zeros.
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------- JamieStrauss2 years agoQrew Member
Mark! Worked like a charm!! Thank you so much! Now, any ideas on how to export it so excel doesn't drop all of the zeros?
------------------------------
Jamie Strauss
------------------------------