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
Vamshi2020
Helper II
Helper II

Count rows except the selected date range

Hi guys,

 

I have Table A which has Arrival Date, Affliate columns and calender table which i use for Slicer. Iam using Between view of slicer.

My requirement is to get the count of Affliates after end range of slicer. For ex:

if i select 1st Oct to 19th oct in slicer , it should give me the count of rows after 19th oct .

 

I tried with below measure , unfortunately it's not working.

var a=MAXX(Calender,Calender[Date])
var b=CALCULATE(COUNTROWS('Data_Arrivals with Case Priorit'),'Data_Arrivals with Case Priorit'[Arrival Date]>=a)
return b
 
The measure just gives the value for default view, but not for slicer selection.

Please helpme on this.
 
TIA

 

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

Hi @Vamshi2020 ,

 

You may try this measure. There is no relationship between the calendar table and the main table.

5.png

CountRows =
CALCULATE (
    COUNTROWS ( 'Table' ),
    FILTER ( 'Table', NOT ( [Arrival Date] IN ALLSELECTED ( 'Calendar'[Date] ) ) )
)

4.png

 

You can check more details from here.

 

 

Best Regards,

Stephen Tao

 

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

 

View solution in original post

4 REPLIES 4
v-stephen-msft
Community Support
Community Support

Hi @Vamshi2020 ,

Could you tell me if your problem has been solved?
If it is, kindly Accept it as the solution. More people will benefit from it.
Or you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business.


Best Regards,
Stephen Tao

v-stephen-msft
Community Support
Community Support

Hi @Vamshi2020 ,

 

You may try this measure. There is no relationship between the calendar table and the main table.

5.png

CountRows =
CALCULATE (
    COUNTROWS ( 'Table' ),
    FILTER ( 'Table', NOT ( [Arrival Date] IN ALLSELECTED ( 'Calendar'[Date] ) ) )
)

4.png

 

You can check more details from here.

 

 

Best Regards,

Stephen Tao

 

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

 

Ashish_Mathur
Super User
Super User

Hi,

Try this measure

=calculate(COUNTROWS('Data_Arrivals with Case Priorit'),datesbetween(calendar[date],max(calendar[date])+1,maxx(all(calendar),calendar[date])))

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
AllisonKennedy
Super User
Super User

I haven't read too carefully, so I may be off mark here, but try:

var a=MAXX(ALLSELECTED(Calender),Calender[Date])

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

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.