Hi, I have crossposted a similar thread at Re: "Running Count by Hour of the Day" thread and no solution has been found.
I am looking at #15 from the original thread, which can be found Running Count by Hour of the Day [SOLVED].
I am trying to understand exactly what this DAX formula does.
I would be glad if someone can help me to understand this DAX formula bit for bit?
Se #15 in original thread for Times[Time] table.
.
I am looking at #15 from the original thread, which can be found Running Count by Hour of the Day [SOLVED].
I am trying to understand exactly what this DAX formula does.
VBA Code:
Active Customers:=CALCULATE (
COUNTROWS ( Customers ),
FILTER (
Customers,
Customers[Exit Time] >= MIN( Times[Time] ) &&
Customers[Arrival Time] <= MAX ( Times[End Time] )
)
)
I would be glad if someone can help me to understand this DAX formula bit for bit?
Se #15 in original thread for Times[Time] table.
.