Hi @adove
First, the Item property of a form expects a Record, but the Filter() formula displayed in your screenshot returns a table. You have to use the LookUp() function to display the desired record. Second, when you do a LookUp(), or even a Filter(), based on the value of control, the value must check against a column in your data source, not against a control as shown in your screenshot.
Example:
LookUp('Flexible Hours Status Change', ID = DataCardValue24.Value)
The LookUp() checks if the data source has a record where the ID column is equals to the ID value passed in the DataCardValue24.Value control. The link below contains the documentation about the Filter, Search, and LookUp functions:
https://docs.microsoft.com/en-us/power-apps/maker/canvas-apps/functions/function-filter-lookup
Please make the necessary changes to the formula in the Item property and let me know if you have additional questions.
Regards,