how can I generate in this format randomly "4SpPsO&CybFwb#KeoocAeS0WFb&EPn+A*WH$g%#4"
can you suggest the logic in Appian?
Discussion posts and replies are publicly visible
joinarray(char(rand(30) * 100 + 40), "")
rand() generates number between 0 and 1
"* 100" scales this to 0-100
"+40" shifts the number to 40-140
char() returns the characters for the given number
Thank you