Forum Discussion
MarkShnier__You
Qrew Legend
5 years agoCan you post your current formula? It's an easy fix.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- SarahBurres5 years agoQrew TraineeID formula:
"D-"&[Tag#]&"-"[Task #]
Task # :
If(not IsNull([Snapshot Task #]), [Snapshot Task #]+1,[Default Task #]+1 )
ā
------------------------------
Sarah Burres
------------------------------- MarkShnier__You5 years ago
Qrew Legend
try this
"D-" & PadLeft(ToText([Tag#]),3,"0") & "-" [Task #]
what this part says
PadLeft(ToText([Tag#]),3,"0")
is to convert the Tag# to text and then make it three characters long, and to the degree that it's too short, then pad it from the left with the character "0")
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- SarahBurres5 years agoQrew Trainee
Worked like a charm. Thanks Mark!