I can't figure out what the vectorization is in DAX
If I have a calculated column based on a slicer like
=Slicer[field]
Of course that doesnt' work. I don't know why, but you need to wrap it in:
=Values(Slicer[field]), probably because Dax tries to combine its column logic and its aggregation...