Hello, I a record type variable that I set to a record that has several fields and I call that variable in another screen by accessing the respective fields:
Set(variableRecord, ThisItemA)
variableRecord.fieldA1
the problem is when I reuse the variable with another set of fields and then everything in the first screen stopped working
Set(variableRecord.ThisItemB)
variableRecord.fieldB1
I already tried using Set(variableRecord,Blank()) but it didn't work.