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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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