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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Count same values from the most recente date

Hi everyone,

 

I want to create a formula which count how many times a specific value shows up in the most recent date.
I made a sample set (see below). I want to know how many times '-1' shows up in the latest month (March). So the answer should be 3.  

DateAspectValue
January 2020Responsibility1
January 2020Validity0
January 2020Satefy-1
January  2020Guarantee -1
February 2020Responsibility0
February 2020Validity-1
February 2020Satefy0
February 2020Guarantee 0
March 2020Responsibility-1
March 2020Validity-1
March 2020Satefy-1
March 2020Guarantee 1
1 ACCEPTED SOLUTION

Hi, @Anonymous 

Try  adding  format function to “Table”[Date]:

measure = 
var _sel = -1
return
CALCULATE(COUNT('Table'[Value]),FORMAT('Table'[Date],"MMMM YYYY")=FORMAT(TODAY(),"MMMM YYYY"),'Table'[Value]=_sel)

Pbix attached

36.png

Best Regards,
Community Support Team _ Eason

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

measure =
var _sel = -1
return
calculate(count(table[Value]),Table[date] = format(today(),"MMMM YYYY"),table[value] =_sel)

Anonymous
Not applicable

Hi @amitchandak ,

 

Thanks for your reply. 

I cannot see if the measure works, because Power BI shows me the following:

 

Cannot load the data for this visual

In DAX-comparisons it is not supported to make comparisons of values of type Date with values of type Text. 

 

I don't understand this, since the column Value is the type 'Whole value' and not 'Text'. 

Hi, @Anonymous 

Try  adding  format function to “Table”[Date]:

measure = 
var _sel = -1
return
CALCULATE(COUNT('Table'[Value]),FORMAT('Table'[Date],"MMMM YYYY")=FORMAT(TODAY(),"MMMM YYYY"),'Table'[Value]=_sel)

Pbix attached

36.png

Best Regards,
Community Support Team _ Eason

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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