I recently managed to implement my first predictive model in appsheet. I set it as initial value when adding a new item. The problem is that it sets the inital value (type enum) in small letters even though the enum has a caps first letter.
Is there a workaraound for that? Thx for the help!
Hi @tony your “hack” worked thank you for that!
although for some columns with the type enum i have more than 30 different values which makes for a long formula
TITLECASE()?
For fun technically:
UPPER(INITIALS(PREDICT(“Your Model”))&Right(PREDICT(“Your Model”), LEN(PREDICT(“Your Model”)-1) should get a title case so long as everything is 1 word right?