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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
davidoz
Frequent Visitor

COUNTIFS equivalent to count the number of times two values appear in my data set

I have a data set of units of equipment. The user enters a start date, an end date, and the Unit Reserved for that job. Powerquery then expands the data to populate a new row for every day that unit will be used:

 

eg.

5/24/2022 SC-0037

5/25/2022 SC-0038

5/26/2022 SC-0039 etc... Please refer to screenshot below

 

Because the data entry is manual, I need to know if a particular unit is double booked on a certain date. In excel I would do this:

=COUNTIFS ( C:C , C2 , G:G , G2 ) 

 

I've searched for over an hour and I can't figure out how to do the same thing in PowerBI. Please help

 

davidoz_0-1653085160893.png

 

1 ACCEPTED SOLUTION
hnguy71
Super User
Super User

Hi @davidoz ,

 

I'm guessing you want a calculated column. You can build something like this:

CountDuplicates = 
VAR _Check = CALCULATE(COUNTROWS(YOUR_TABLE), FILTER(YOUR_TABLE, YOUR_TABLE[Date] = EARLIER(YOUR_TABLE[Date]) && YOUR_TABLE[UnitReserved] = EARLIER(YOUR_TABLE[UnitReserved])))
RETURN
IF(_Check > 1, 1, 0)

 

Let me know if that works.



Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!

View solution in original post

2 REPLIES 2
hnguy71
Super User
Super User

Hi @davidoz ,

 

I'm guessing you want a calculated column. You can build something like this:

CountDuplicates = 
VAR _Check = CALCULATE(COUNTROWS(YOUR_TABLE), FILTER(YOUR_TABLE, YOUR_TABLE[Date] = EARLIER(YOUR_TABLE[Date]) && YOUR_TABLE[UnitReserved] = EARLIER(YOUR_TABLE[UnitReserved])))
RETURN
IF(_Check > 1, 1, 0)

 

Let me know if that works.



Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!

thank you! this worked perfectly!

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.