Hello @tsubakuma
Thank you very much for using our plugin.
In short, you want to generate a random number starting with “E-” followed by seven digits.
Insert a calculated field in the form and enter the following code as its equation:
(function() {
let digits = '0123456789', result = "E-";
for (var i = 7; i > 0; --i) {
result = CONCATENATE(result, digits[ROUND(RANDOM() * (digits.length - 1))]);
}
return result
})()
Best regards.
codepeople san
Thank you!
It’s God’s hand.
Please tell me one more thing.
What should I do if I want to make the numbers sequential instead of random?
Sorry for being an amateur.
Hello @tsubakuma
The plugin does it for you. It generates a unique and consecutive number with every submission. You can include this number in the notification emails and thank you pages after submitting the forms. However, it is a commercial feature, and we are not allowed to support any customers in these forums.
For pro or commercial product support please contact us directly on our site. This includes any pre-sales topics as well.
Commercial products are not supported in these forums. We will happily answer this and any other questions you can have on our own site.
Thank you.
Thank you.
I have purchased a Developer license, does that mean I can purchase it separately?
Hello @tsubakuma
Your version of the plugin includes this feature. But please for questions related the plugin commercial versions contact us via the plugin website.
Best regards.