Forum Discussion
Anonymous
5 years agoNot applicable
Lookupvalue function returns error
Hello I'm trying to lookup value (list prise) in one input table: and merge it with the following table to get the following resul table (list price is the same ragardless the date)...
- 5 years ago
Anonymous
Check your 1st table for duplicate values in product column. you try the following as well:ListPrice = MAXX( FILTER( table-1, table-1[product]=EARLIER(table-2[product]) ), table-1[List Price] )
Fowmy
5 years agoSuper User
Anonymous
Check your 1st table for duplicate values in product column. you try the following as well:
ListPrice =
MAXX(
FILTER(
table-1,
table-1[product]=EARLIER(table-2[product])
),
table-1[List Price]
)