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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
RichOB
Post Partisan
Post Partisan

Need help adding a date range to a measure

Hi, I need to add a date range for my Canada customer count measure please. I currently have:

 

Measure 1: Customer_Count = Count('Sheet1'[Customer_ID])

Measure 2: Canada_Count = CALCULATE('Sheet1'[Canada], 'Sheet1'[Country] = "Canada")
 
The above measures gives me the total Count of 3 for Canada. What can I add to this measure to only show a date range of 01/04/2024 -30/04/2024 so a card displays 2?

 

Customer_IDCountryDate
1Canada01/04/2024
2Canada02/04/2024
3Canada04/05/2024
4USA01/04/2024
5USA08/05/2024
6UK03/04/2024
7UK05/05/2024
8UK01/06/2024
9UK06/06/2024
10UK10/06/2024


Thanks

1 ACCEPTED SOLUTION

Hi,
you can try add one more filter inside calculate like this.
Canada_Count =
CALCULATE(
COUNT('Sheet1'[Customer_ID]),
'Sheet1'[Country] = "Canada",
'Sheet1'[Date] >= DATE(2024, 4, 1),
'Sheet1'[Date] <= DATE(2024, 4, 30)
)

View solution in original post

2 REPLIES 2
Thennarasu_R
Responsive Resident
Responsive Resident

Hi @RichOB 
Below mention calculation only for the  April Month Count .

Canada_Count = CALCULATE('Sheet1'[Canada]'Sheet1'[Country] = "Canada"),AND(Date Colum>=01/04/2024,Date column<=30/04/2024)

Thanks,
Thennarasu R

If answered your questions mark accepeted a solution and give kudo !

Hi,
you can try add one more filter inside calculate like this.
Canada_Count =
CALCULATE(
COUNT('Sheet1'[Customer_ID]),
'Sheet1'[Country] = "Canada",
'Sheet1'[Date] >= DATE(2024, 4, 1),
'Sheet1'[Date] <= DATE(2024, 4, 30)
)

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

March Power BI Update Carousel

Power BI Community Update - March 2026

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