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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
markefrody
Post Patron
Post Patron

Summarize Count per Day

Hi,

 

I have a table which looks like this:

markefrody_0-1637811711893.png

pbix file can be found here:
https://www.dropbox.com/s/ohxiqo3wsughxeo/Sample%20Data.pbix?dl=0

I'm trying to create a DAX code with these two conditions if I filter for field "DatePlaced":
1. # Loaded = Count all fields which are "blank" in the "DateEmptied" column.
2. # Empty = Count all fields which are not "blank" in the "DateEmptied" column.

It should appear like this:

markefrody_2-1637811956951.png



Then summarize it per "DatePlaced" like this. Should be summarized by date only. No time needed:

markefrody_3-1637812024399.png

 

Appreciate your kind assistance. Thanks!

Best regards,
Mark V.

 

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


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

View solution in original post

7 REPLIES 7
Ashish_Mathur
Super User
Super User

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


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

Thanks @Ashish_Mathur! This is what I was looking for. Thank you for your assistance.

You are welcome.


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

@markefrody ,

Create a separate date column in power query or dax and try to use that

 


Date = [datetime].date
or
Date = date(year([datetime]),month([datetime]),day([datetime]))

 

 

Power query

DateTime.Date([datetime])

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi @amitchandak

I already have this as a date column named "DatePlaced(DateOnly)".

Will you be able to assist me in creating the DAX code for the 2 conditions and summary? Thanks.

#loaded = COUNTROWS(FILTER(Sheet1, Sheet1[DateEmptied] = BLANK()))

#empty should just be a simple count - I'll let you do that one.

I don't get quite the same results shown in the table, e.g. 11/17 has 8 empty, 11/18 is in the table twice with different results. Can you check please?

@HotChilli that you for your reply and assistance. I really appreciate it.
Sorry for the excel table mistake. Was in a rush to post it. You are right 11/17 has 8 empty. Thanks.

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors