Hi @jharville ,
When you said the specific record, Does it mean the record just submitted by form?
Your requirement can be implemented by Deep linking, and if you want to pass ID of record just submitted, I would recommend you use FormName.LastSubmit.ID to pass ID to parameter, the FromName.LastSubmit code can retrieve the last record the form just submitted.
--Link: "https://web.powerapps.com/apps/{appId}?ParameterName=" & FormName.LastSubmit.ID
Then on the start of app, use Param() function to get the parameter value(ID) and save to variable, and navigate to specific record based on record ID
Set(varID, Value(Param("ParameterName"))
LookUp('SP List', ID=varID)
Hope this helps.
Sik