Ok @SumanKoduri ,
You are getting today's records with a collection as below
ClearCollect(
Collection1,
Filter(
'[5006RETURNS_LOG]',
IsToday(C5006_RETURN_LOGGED_DT)
)
);
and displaying this in a gallery I will call Gallery2 which then has to be selected to show the relevant record in a form and in this data set 5007logdetail is an ID that you want to select to display the record on a form? If all of these assumptions are correct, the Item property of the Form would be something like
Lookup(
5007logdetail,
ID = Gallery2.Selected.ID
)
Note I cannot see your data and need to rely on you for the correct field names and references.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.