I have a form connected to a SharePoint list and I've added one of the fields (Contract Reference) which is a Data Input control.
Whenever someone copy pastes a text there containing a "/", I want it to automatically change the "/" to a " " (blank space).
Everywhere I look suggests to use this formula in the Default field: Substitute(ContractReference.Text, "/", " "). However, it says that .Text isn't a valid argument.
Can someone please help me figure out what is the issue with this formula? Thanks!