Two way Vlookup

Hi,

Please help. How can use two way lookup whithout helper column in the appsheet form. i want voolup mrp base on below screenshot. 

exampleexample

0 6 106
6 REPLIES 6

Dont understand, please rephrase

 

I want that when the channel column and Sku column are equal, then the column with MRP should be auto filled. 

ref sheet name "mrp list"

entry form sheet name "scan data"

So the start of this would be to have a App Formula for [Form MRP] to be

IF(

[SKU]=[[Channel vl2],

<put in here what you want it to be>,

""

)

 

 

I am using this function ANY(SELECT(Selling Price List[PRICE],[_THISROW].[SKU] = [Item SKU Code], TRUE)) but this not helpful. 

I want that when the [SKU] column and [channel] match with my ref data, then the [selling MRP] in the [MRP] column should be auto filled. 

You're probably going to have to show us the entire list of columns in each table so we can best help.  Please post some screenshots of Date->columns for the tables your referencing

ANY( 
  SELECT(Selling Price List[PRICE], 
    AND(
     [Item SKU Code] = [_ThisRow].[SKU],
     [Selling Channel] = [_ThisRow].[CHANNEL]
    )
  )
)
Top Labels in this Space