Please, how to make sequence 1,3,5,7,9 in auto-increment field ?
Non-one increment in auto-increment field
Collapse
X
-
If you have advanced pack.
1. Create a regular auto-increment field. Name it numberInternal.
2. Create a regular Integer field. Make it read-only. Name it number.
3. In a workflow 'update target record' action write a formula script:
Code:number = numberInternal * 2 - 1;
If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.
Comment