Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I wrote up few DAX queries to get total stock quantity. First query is this :
The correct total should be 28,692,069.52. Appreciate if someone can help me on this.
Thanks !
Solved! Go to Solution.
Hi @Velvetine27 ,
Create a new measure by using ISINSCOPE() or ISFILTERED() function.
ISINSCOPE function (DAX) - DAX | Microsoft Learn
ISFILTERED function (DAX) - DAX | Microsoft Learn
Measure = IF(ISINSCOPE([Plant]),[TotalRunningQuantity],SUMX(ALLSELECTED(yourtable),[TotalRunningQuantity]))
Hi @Velvetine27 ,
Create a new measure by using ISINSCOPE() or ISFILTERED() function.
ISINSCOPE function (DAX) - DAX | Microsoft Learn
ISFILTERED function (DAX) - DAX | Microsoft Learn
Measure = IF(ISINSCOPE([Plant]),[TotalRunningQuantity],SUMX(ALLSELECTED(yourtable),[TotalRunningQuantity]))
Refer to this link. Maybe it will help you.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
10 | |
8 |