You can on the items property of the Datatable put:
AddColumns(
'ESN Ticket Tracker',
"city2",
LookUp(
'Networking Device List Master' ,
camelCase = 'ESN Ticket Tracker'[@camelCase],
city
),
"State2",
LookUp(
'Networking Device List Master' ,
camelCase = 'ESN Ticket Tracker'[@camelCase],
state
)
)
Or
create a collection OnVisible or OnStart of the App as :
ClearCollect(MyCombinedTable,
AddColumns(
'ESN Ticket Tracker',
"city2",
LookUp(
'Networking Device List Master' ,
camelCase = 'ESN Ticket Tracker'[@camelCase],
city
),
"State2",
LookUp(
'Networking Device List Master' ,
camelCase = 'ESN Ticket Tracker'[@camelCase],
state
)
))
Then use the Collection, MyCombinedTable on the Items property of the DataTable
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.