Hi @mdennis ,
Do you want to use the obj[k] formula to reference the value from your obj variable?
Based on the formula that you mentioned, I think there is something wrong with it. Firstly, the obj[k] formula is not supported within PowerApps currently.
In addition, the obj variable that you set within your app is an Object rather than an array. The obj[k] formula is used to reference values from an array.
I have made a test on my side, please take a try with the following workaround:
Set the OnStart property of the App control to following (initialize your obj variable):
ClearCollect(obj, {Id:1, Value:"one"}, {Id:2, Value:"two"}, {Id:3, Value:"three"})
Set the OnSelect property of a Button to following (press this button to set the k variable):
Set(k, 2)
Add a Label control within your app, set the Text property to following:
LookUp(obj, Id = k, Value)
More details about the LookUp function, please check the following article:
LookUp function
Best regards,