Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
I see everyone responded :)
I think my formula has the best chance for first round syntax errors being clean.
The field for date d will need be used as [date d]
I think my formula has the best chance for first round syntax errors being clean.
The field for date d will need be used as [date d]
- WadeDavis18 years agoQrew TraineeThis returned the error:
Please check the syntax of your formula. Look for mismatched parentheses, missing quotes, or extra brackets.
"TORC"
& Right(ToText(Year(date d)),2)
& "-"
& ToText([Record ID#]+10000) - QuickBaseCoachD8 years agoQrew CaptainTORC"
& Right(ToText(Year([date d])),2)
& "-"
& ToText([Record ID#]+10000) - ChuckGrigsby8 years agoQrew CadetI wonder if he doesn't have a date field and it should be Year(Today())
- QuickBaseCoachD8 years agoQrew CaptainBut then the unique identifier would keep changing when the year rolls over.
Maybe he wants
"TORC"
& Right(ToText(Year(ToDate([Date Created]))),2)
& "-"
& ToText([Record ID#]+10000)