Forum Discussion
Time Difference Between two resources
Hi v-jiascu-msft,
I tried doing it on my data set. My data set is slightly big. There are about 2 mil rows. When I did it on my data set, it was taking too much time. I entered the formula and for two hours it just said "Working On It", but it never did :-/. Is it because the data set is big or some other reason. My desktop has more than decent hardware ( 8 Gb ram, octa-core processor). But I did on a smaller data set it happened very quickly.
Please help me. what might be the reason. Is there any other way can do the same and it happens very quickly.
Hi Kumar11109,
I had a test about 500k. It was very slow. I think the main cause is that we put a complicated formula on a large dataset. Let's split the formula into two parts as calculated columns.
NextStartTime =
CALCULATE (
MIN ( Table1[Start Time] ),
FILTER (
Table1,
Table1[Session ID] = EARLIER ( Table1[Session ID] )
&& Table1[Index]
= EARLIER ( Table1[Index] ) + 1
)
)TimeSpent = IF ( ISBLANK ( [NextStartTime] ), BLANK (), [NextStartTime] - Table1[End Time] )
Best Regards!
Dale