How do I go about integrating the ORDERBY function into the below SELECT function I have working as my Valid_if for the [Country] column in the LOCAL PRODUCT ASSORTMENT table.
SELECT(
INVENTORY OWNER[Country],
([Sales Unit] = [_THISROW].[Sales Unit])
)
Solved! Go to Solution.
How about
ORDERBY(
SELECT(
INVENTORY OWNER[key col],
[Sales Unit] = [_THISROW].[Sales Unit]
),
[Country]
)
How about
ORDERBY(
SELECT(
INVENTORY OWNER[key col],
[Sales Unit] = [_THISROW].[Sales Unit]
),
[Country]
)
ORDERBY(
FILTER("Inventory Owner", [Sales Unit] = [_ThisRow].[Sales Unit]), [Country]
)
User | Count |
---|---|
16 | |
13 | |
8 | |
7 | |
4 |