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
NJ81858
Helper IV
Helper IV

Counting per Month

I am trying to calculate the number of occurances per month. The 'Data Date' field is the month that the data was pulled and the 'Redemption Date' is the date that I am trying to count the number of occurances for. So essentially what I want is the number of 'Redemption Date' for each 'Data Date'. This is what I have so far and it is not giving me the correct answer, so any help would be appreciated!

CD Measure.PNG

3 REPLIES 3
tamerj1
Super User
Super User

Hi @NJ81858 
It depends on the filter context of your viual. However, yoy may try

Redemption Count =
SUMX (
    VALUES ( 'CD Data'[Data Date] ),
    COUNTROWS ( CALCULATETABLE ( VALUES ( 'CD Data'[Redemption Date] ) ) )
)
Greg_Deckler
Super User
Super User

@NJ81858 Put your Data Date field into a table visual along with any other stuff you want. Create a measure like:

Measure = COUNTROWS('CD Data')

Or

Measure = COUNTROWS(DISTINCT('CD Data'[Redemption Date]))

@ 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...
amitchandak
Super User
Super User

@NJ81858 , Have a separate date table joined with Redemption Date

 

calculate(countrows(Table), filter(all('Date'), Date[Month Year] = max(Date[Month Year]) ) )

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