I have a DataTable that I am attempting use a hyperlink and let a user navigate to a record. To do that I set IsHyperlink = true. Then, I would like to on that same field use the "Launch" command with current record ID. I end up with something like this:
OnSelect = Launch("Http://MyUrl.com...&id=" & ThisItem.ID)
However, the ThisItem throws an error "Name isn't valid. This identifier isn't recognized." However, the Text=ThisItem.UserDisplayName works perfectly fine. I have also tried to set a variable OnClick for testing purposes and get a similar error message.