Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello,
For each month I'm calculating the DISTINCT COUNT of articles and I have this result below :
When I'm calculating the sum of the results for all months I have 2388. It's different from the sum displayed by the matrix visual 2280 :
The problem is some articles existed in different months...
How to calculte the sum for each month without counting the same articles for different months ?
Thanks in advance.
Regards.
Hi, @K-LED,
If I understand you correctly, you want to make sure an article is not counted in two different months. How to do this will depend on what your data look like.
Assuming your data has an orderID, your measure could look like this:
Measure = COUNTROWS ( FILTER ( ADDCOLUMNS ( SUMMARIZE ( 'Table'; 'Table'[OrderID]; 'Table'[ArticleID] ); "minDate"; CALCULATE ( MIN ( 'Table'[Date] ); ALL ( 'Table'[Month] ) ) ); [minDate] = CALCULATE ( MIN ( 'Table'[Date] ) ) ) )
Cheers,
Sturla
User | Count |
---|---|
11 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
25 | |
19 | |
16 | |
10 | |
7 |