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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mwadhwani
Kudo Kingpin
Kudo Kingpin

Dates between two dates of another table

Hello Experts,

 

I have  two tables:
TableA (Starttime,EndTime)
TableB(EndTime,F_Value)

I need count of F_Value between StartTime and EndTime of TableA from TableB(EndTime)

 

Any help would be highly appreciated.

 

1 ACCEPTED SOLUTION

Hi @mwadhwani,

 

You can create a measure below: 

 

Measure = CALCULATE(COUNT('TableD'[OperatingValue]),FILTER(ALL('TableD'),'TableD'[OperatingValue]<=5 && TableD[ProcessTime] >=MAX('TableB'[StartTime]) && 'TableD'[ProcessTime]<=MAX(TableB[End Time])))

 

Then drag a table visual to the report, please Start Time, End Time and measure. You can download the attached pbix file to have a look. 

 

w1.PNG

 

Best Regards,
Qiuyn Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

 

Share a dataset and show the expected result.


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

Hello @Ashish_Mathur,

Please find the below dataset:

https://www.dropbox.com/s/qmh248ioh7uh1u9/Dataset.xlsx?dl=0

Dataset has 3 tabs TableB,TableD,OutputStructure.

 

 

Note: I achieved above output using SQL.Below is the sql for reference:

 

SELECT
COUNT(D.OperatingValue),
C.StartTime,
C.EndTime
FROM C,
D
WHERE D.OperatingValue <= 5
AND D.ProcessTime BETWEEN C.StartTime AND C.EndTime
GROUP BY C.StartTime,
C.EndTime

 

Thanks

 

 

Hi @mwadhwani,

 

You can create a measure below: 

 

Measure = CALCULATE(COUNT('TableD'[OperatingValue]),FILTER(ALL('TableD'),'TableD'[OperatingValue]<=5 && TableD[ProcessTime] >=MAX('TableB'[StartTime]) && 'TableD'[ProcessTime]<=MAX(TableB[End Time])))

 

Then drag a table visual to the report, please Start Time, End Time and measure. You can download the attached pbix file to have a look. 

 

w1.PNG

 

Best Regards,
Qiuyn Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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