Hi All,
OnStart property of App, I am getting the Item ID using below code.
If(
!IsBlank(Param("ItemId")),
Set(
varGetItem,
First(
Filter(
'CustomerList',
ID = Value(Param("ItemId"))
)
)
)
)
Using this variable "varGetItem", This is nothing but item ID. I want to get the value of other columns.
varGetItem.ColumnName (SingleLine) - This is working fine.
But one of the field is lookup filed. From the lookup field I am not able to get the value.
ex:- varGetItem.LookupFieldColumn (Lookup Column)
Can you please help me into this.
Thanks