I have a text data card in a form with the following formula to auto populate other data cards, but it stopped working last week:
If(
!IsBlank(LookUp(EISReference, EmpNumText = txtEmpNo.Text)),
Set(varUser, LookUp(EISReference, EmpNumText = txtEmpNo.Text)),
If(
!IsBlank(LookUp(EISRetired, EmpNumText = txtEmpNo.Text)),
Set(varUser, LookUp(EISRetired, EmpNumText = txtEmpNo.Text)),
Set(varUser, Blank())
)
)
The formula is in the On Change property of the data card, and it worked before without any issues. My data source and connections are working, because I can add a text input control and a button, with the same formula and I am able to auto populate the other data card fields.
I am also seeing some glitching, where the formula will work in edit mode, but when I publish and run the app, it doesn't work.
Any ideas?