Hi everyone,
So I have a this table that I use as a data source in my power app.

And I want to filter this table based on the BaggageId. The BaggageId will be selected from a DropDown. So I performed following formula
Filter('[dbo].[vBaggageHistory]',BaggageId=Dropdown_baggagetracking.Selected.Result && Status=1)
Since this table will be used in multiple points on one screen, I was thinking to store this filter result in a varible, so my app doesnt have to perform filtering every single time. And so I executed this formula
UpdateContext{ varFilteredResult : Filter('[dbo].[vBaggageHistory]',BaggageId=Dropdown_baggagetracking.Selected.Result && Status=1)}
However, in this variable only the value from BaggageId and Status are stored. For other attributes (Id, Message, UTCTimeStamp) the values are not stored (blank). It looks like only the values from the attributes used in filter function conditional expression are stored. Does anyone know how I can store all values from filtered table/record?

Many Thanks in advance!