Looked in weweb docs, but couldn’t find an answer. I have a username field that includes both first and last name. What formula would I use to display only the first name? ie ‘John Doe’ should display ‘John’.
Split(username,' ')[0]
You should however have a dedicated column for first and last names since people can have spaces in their name.