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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Visualize Quarter to Quarter inventory with created date and inactive date

I’m losing my mind! This is probably a simple solution but anyways..

 

I have a connected SharePoint list of a System Inventory with two dates: Date Created and Date Inactive

I have a separate date table that reflects fiscal quarters

I want to make a bar chart that shows count of active systems over the fiscal quarters.

How do I do this? I feel like I have tried everything with USERELATIONSHIP and CROSSFILTER but I keep failing miserably.

1 REPLY 1
ValtteriN
Super User
Super User

Hi,

Here is the pattern I usually use when I want to display count between active and inactive dates:

CountBetween =
var c_date = MAX('Calendar'[Date])
return
CALCULATE(COUNT(Table[ID]),
FILTER(Table,Table[StartDate]<=c_date &&
Table[EndDate]>=c_date))



I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.