MAXX(<table>,<expression>,[<variant>])
What's the difference between using ALL(Product['Name'])
vs VALUES(Product['Name'])
in the above DAX?
VALUES will return only the value of product names in the current filter context (i.e. a subset). ALL will return all of them.