Hi,
Why this function is not worked in the price types column please help.
SELECT(Selling Price List[PRICE],[_THISROW].[SKU] = [Item SKU Code], TRUE)
The expression is valid but its result type 'List' is not one of the expected types: Price
Hi,
Why this function is not worked in the price types column please help.
SELECT(Selling Price List[PRICE],[_THISROW].[SKU] = [Item SKU Code], TRUE)
The expression is valid but its result type 'List' is not one of the expected types: Price
Enclose your SELECT() within an ANY(), like this:
ANY( SELECT(…) )