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
iamdmitry
Frequent Visitor

How calculate quantity difference (distinct count) between row date and selected date

Hello, guys!

 

Please, help me or give me some advice, how calculate quantity difference (distinct count) between row date and selected date.

 

For example, if selected date is 31-1-18:

 

Date       | Distinct Count ID | Diff
31-1-18  | 12                        | 0
01-2-18  | 10                        | -2
02-2-18  | 16                        | 4
03-2-18  | 22                        | 10
04-2-18  | 11                        | -1

 

Dataset is seems like:

Date | ID | Category | Type | Color | etc.

 

I need to create chart with Diff as values and Dates as time axis.
If it's possible, I would like to save possibility to use filtering by columns (Category, Type, Color...)

----------------------------------------------------------

I've calculated two measures like:

 

fixed quantity = calculate(distinctcount(ID), filter(table, Date = Date(2018, 1, 31)))
dynamic quantity = distinctcount(ID)
diff = dynamic quantity - fixed quantity

 

But that approach doesn't work ;-(

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

Try:

 

fixed quantity = calculate(distinctcount(ID), filter(ALL(table), Date = Date(2018, 1, 31)))
dynamic quantity = distinctcount(ID)
diff = dynamic quantity - fixed quantity

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

Try:

 

fixed quantity = calculate(distinctcount(ID), filter(ALL(table), Date = Date(2018, 1, 31)))
dynamic quantity = distinctcount(ID)
diff = dynamic quantity - fixed quantity

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.

Top Solution Authors