Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ET1995
Helper I
Helper I

Count IDs which Increased/Decreased

Hi all,

 

Please please help me out with this. So this is my table (made using the power BI visual matrix). The rows are IDs and the columns are Dates, usually a week apart (but not always). The values are sum of the quantity of each ID (PDQ). I want to count the number of IDs, which have at leaste ONE change across these 8 weeks.

 

SKU1/6/20211/13/20211/20/20211/27/20212/3/20212/10/20212/17/20212/24/2021
A11111111
B22333311
C33445554
D33333332
E11111111
F33333333
G01111111
H44555555
I33333333
J22222222
K11111000
L44444444
M11111111

 

I have a measure which calculates the previous week's PDQ:

 

 

lastpdq = 
var latestDate = MAX(Append1[MinDate])
VAR prevDate = CALCULATE(MAX(Append1[MinDate]),Append1[MinDate]<latestDate,ALLSELECTED(Append1[MinDate]))
RETURN
CALCULATE(
SUM(Append1[PDQ]),
Append1[MinDate]=prevDate, ALLSELECTED(Append1[MinDate]))

 

Using this I calculated the Variance between previous and current week. I used this to apply condiitional formatting as well and it works perfectly fine.

I tried using this (and much more) to get the count, but nothing is working:

 

Count = CALCULATE(
    COUNTROWS( SUMMARIZE( Append1, Append1[SELL_ID] )),
    FILTER( SUMMARIZE( Append1,Append1[SELL_ID] ),[Variance]>0||[Variance]<0))

 

 

1 ACCEPTED SOLUTION
v-deddai1-msft
Community Support
Community Support

Hi @ET1995 ,

 

Use something like:

 

Count IDs changed at least once =
VAR a =
    ADDCOLUMNS (
        SUMMARIZE ( 'Table', 'Table'[SKU] ),
        "VALUE",
            COUNTROWS (
                DISTINCT (
                    SELECTCOLUMNS (
                        FILTER (
                            SUMMARIZE (
                                'Table',
                                'Table'[SKU],
                                'Table'[Date],
                                "PDQ", COUNT ( 'Table'[SKU] )
                            ),
                            'Table'[SKU] = EARLIER ( 'Table'[SKU] )
                        ),
                        "VAUE1", [PDQ]
                    )
                )
            )
    )
RETURN
    COUNTX ( FILTER ( a, [VALUE] >= 2 ), 'Table'[SKU] )

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

 

View solution in original post

3 REPLIES 3
v-deddai1-msft
Community Support
Community Support

Hi @ET1995 ,

 

Use something like:

 

Count IDs changed at least once =
VAR a =
    ADDCOLUMNS (
        SUMMARIZE ( 'Table', 'Table'[SKU] ),
        "VALUE",
            COUNTROWS (
                DISTINCT (
                    SELECTCOLUMNS (
                        FILTER (
                            SUMMARIZE (
                                'Table',
                                'Table'[SKU],
                                'Table'[Date],
                                "PDQ", COUNT ( 'Table'[SKU] )
                            ),
                            'Table'[SKU] = EARLIER ( 'Table'[SKU] )
                        ),
                        "VAUE1", [PDQ]
                    )
                )
            )
    )
RETURN
    COUNTX ( FILTER ( a, [VALUE] >= 2 ), 'Table'[SKU] )

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

 

Jihwan_Kim
Super User
Super User

Hi, @ET1995 

Please check the below picture and the sample pbix file's link down below.

All measures are in the sample pbix file. And all steps are numbered in front of each measure.

 

Picture4.png

 

https://www.dropbox.com/s/h2grahj4hvbmm90/et1995.pbix?dl=0 

 

 

Hi, My name is Jihwan Kim.

 

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

 

Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


ET1995
Helper I
Helper I

@MFelix can you help with this?  

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.