Hi All,
I have a data table display columns from two tables, below is the Query for this data table Items:
AddColumns('Resource Requests',
"Location",LookUp(RARPAnswers,'Answer ID'='Resource Requests'[@'Answer ID'].'Answer ID').'Preferred Location',
"Position Title",LookUp(RARPAnswers,'Answer ID'='Resource Requests'[@'Answer ID'].'Answer ID').'Position Title',
"Req Types",LookUp(RARPAnswers,'Answer ID'='Resource Requests'[@'Answer ID'].'Answer ID').'Request Type')
and the data table looks like this:

Now I want to add a hyperlink on the ID, so when I click the ID, a page/form will show with more details information, all the information is from those two tables. May I know how to achieve this?
I set the OnSelect property of the ID column to this: Navigate(Form2,None), and Form2 item property is this : 'DataTable3.Selected', but currently there is some error report:

Could anyone give me some suggestion? thank you so much!