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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
BYENER
Helper V
Helper V

Countif multiple dates in Power query

Hi,

 

I hope someone can help me. I have a table (A) with two date columns. In another table (B) I have one date column. I want to show in table B how many rows match my criteria. See below: I want to do this in Power Query and do not want to work with DAX.

 

Count row if column C > F3 and column A < F3

 

BYENER_0-1669210265990.png

Thanks a lot!

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@BYENER , You have create a new column in Power Query in table 2. File is attached below after signature

 

 

let
_1 = [Column1],
_table = Table.SelectRows(DateRange, each [Date1] <= _1 and (if [Date2] =null then DateTime.Date(DateTime.FixedLocalNow()) else [Date2]) >= _1),
_count = Table.RowCount(_table)
in 
_count

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
BYENER
Helper V
Helper V

@amitchandak super this works fine!

amitchandak
Super User
Super User

@BYENER , You have create a new column in Power Query in table 2. File is attached below after signature

 

 

let
_1 = [Column1],
_table = Table.SelectRows(DateRange, each [Date1] <= _1 and (if [Date2] =null then DateTime.Date(DateTime.FixedLocalNow()) else [Date2]) >= _1),
_count = Table.RowCount(_table)
in 
_count

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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