Hi,
I connected my PowerApp to SQL Server and used a datatable to represent the table I have in SQL Server. This datatable/table has about 1,000 records. The first column is "name", which represents an employees' name.
Is it possible to filter this datatable to only show the current users' record? For instance, let's say Barry Manowhich launched the PowerApp and navigates to the screen with the datatable. Can I filter it so that it'll only show information related to Barry Manowhich?
So far, I used a Button and set the OnSelect = Set(_currentUser,User().FullName)
Then on my datatable, I set Items = Filter(Search('[dbo].[CV_V_CURR_EMP_BALANCES]'), name=_currentUser)
On the OnStart of the App, I put in Set(_currentUser,User().FullName)
I'm getting several errors, can anyone point why I'm getting these errors?
Thank you