Hi ,
I want to see the VanArsdel Sales in all the rows. But I am seeing the value only against "VanArsdel". Please see the below image. And the DAX I have used,
Solved! Go to Solution.
@RADHIKA_3022 Is that "Sales Amount" a column and not a measure? if yes then that is cross filtering your measures. Use this instead:
VanArsdel Sales =
CALCULATE (
Sales[Sales Amount],
FILTER (
ALL ( Products[Manufacturer], Products[Sales Amount] ),
Products[Manufacturer] = "VanArsdel"
)
)
Or maybe the Manufacturer column isn't coming from Products table?
@RADHIKA_3022 Is that "Sales Amount" a column and not a measure? if yes then that is cross filtering your measures. Use this instead:
VanArsdel Sales =
CALCULATE (
Sales[Sales Amount],
FILTER (
ALL ( Products[Manufacturer], Products[Sales Amount] ),
Products[Manufacturer] = "VanArsdel"
)
)
Or maybe the Manufacturer column isn't coming from Products table?
Yes you are right, the Manufacturer column isn't coming from Products table, it's coming from Manufacturer table !!
Thanks a lot for responding Antriksh !
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
User | Count |
---|---|
52 | |
20 | |
13 | |
12 | |
11 |
User | Count |
---|---|
43 | |
22 | |
21 | |
18 | |
17 |