field December 06, 2019, 08:04:16 PM Hi, how can I do to create a field that is self-increasing? concatenating three fields and the increase depends on one of themexample I will create a student code which is composed of school code, grade and course the fields code:5000 grade:08 course:1 student code:500008101, that the last two digits increase as a new student is ingested always and when they are of the same courseAnd a question how can I implement a calendar on my site Quote Selected
Re: field Reply #1 – December 07, 2019, 06:33:46 PM @HENRYPIERCE you have to create a database table column to store the two-digit, then during add(insert) you will create an incremental variable in a for loop that you check against the column in the database if it exists. if it exists, then it increments the variable until it gets a number that does not exist then you insert it.As for how to implement a calendar, you can follow this tutorial. Quote Selected