VC grab difference column value base on enumlist reference values

I create an appsheet with 2 table view base on 2 difference sheet(Sheet1 & Sheet2) show as below,

ckng6218_0-1654649768782.png Sheet1

ckng6218_0-1654650943655.pngSheet2

I create an Enumlist Ref for [Installed PC] with below formula and it working fine,

SELECT(
Sheet1[Staff PC],
IN(
[Staff PC],[_THISROW].[Installed PC]
)
)

My question is i want to create a VC(Staff Name) at sheet2 table beside [Installed PC], and i want that VC grab the Staff Name value base on [Installed PC] references, the VC coloumn output for soft1 row should be Ace,Bravo

So far i dont have any idea how to start the VC formula.

Solved Solved
0 2 80
1 ACCEPTED SOLUTION

How about

SELECT(
 Sheet1[Staff Name],
 IN(
  [Staff PC], [_THISROW].[Installed PC]
 )
)

View solution in original post

2 REPLIES 2

How about

SELECT(
 Sheet1[Staff Name],
 IN(
  [Staff PC], [_THISROW].[Installed PC]
 )
)

GREAT!!! You save my day ๐Ÿ˜

Top Labels in this Space