What are you binding name_lbl to?
my theory:
I think you have an empty cell in one of your datatables that the form is expecting to be a value.
This will be a row with a cell that is associated with a user and is being used in a databinding.
let’s say your name_lbl.text is bound to the name column of some datatable.
You could find this by doing
app_tables.my_table.search(user=user_with_problem, name=None)
I’m guessing you don’t have a clone link you can share…
Side note
Skulpt will change certain variable words if they are reserved. name is a reserved word so that’s why it’s saying name_$rn$
You can read the error message without _$rn to get a better understanding of the error.