Hi Builders
I'm working with a PowerApps Table Control (tblWSH_RA), and I’m facing an issue
Item Property :
Filter(
Forms1,
User().Email in 'Created By'.Email ||
User().Email in Appr.Email ||
!IsBlank(LookUp(Vet, Email = User().Email)) ||
!IsBlank(LookUp('Con', Email = User().Email))
)
OnSelect Property:
Set(varSelecteID, tblWSH_RA.Selected.ID);
Issue:
varSelecteID is not getting any ID at all and also no value and error in tblWSH_RA.Selected
Does anyone have suggestions on how to make tblWSH_RA.Selected work properly in a Table Control, or is there a different way to capture the selected record?
Any help or guidance would be appreciated!
Thanks!