Skip to main content
July 23, 2024
Question

Appian Logic

  • July 23, 2024
  • 2 replies
  • 0 views

how can I generate in this format randomly "4SpPsO&CybFwb#KeoocAeS0WFb&EPn+A*WH$g%#4"

can you suggest the logic in Appian?

    2 replies

    stefanhelzle0001
    July 23, 2024

    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

    July 23, 2024

    Thank you