Why so Slow?

pjmorris

Well-known Member
Joined
Aug 2, 2012
Messages
2,158
Office Version
  1. 365
Platform
  1. Windows
I have the following measure:

Rich (BB code):
=CALCULATE(DISTINCTCOUNT(qryVault[Doc No]), qryDDM,
           qryVault[Issued Date]>0,
           FILTER(qryVault,qryVault[Issued Date]<=[PeriodEndDate])
    )

Which causes 'RefreshAll' to take over 15 minutes.

Change it to:
Rich (BB code):
=CALCULATE(DISTINCTCOUNT(qryVault[Doc No]), qryDDM,
           qryVault[Issued Date]>0
    )

And it only takes 40 seconds or so.

The measure [PeriodEndDate] is defined as:

Rich (BB code):
=CALCULATE(max(qryCalendar[Date]),ALLSELECTED(qryCalendar))

Any ideas gratefully received.

Regards

Peter
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
PS. The measure referred to above is named [CountAllIssued] and is used subsequently in this measure:

Rich (BB code):
=CALCULATE([CountAllIssued], 

     FILTER(qryvault, (qryVault[Date Comments Returned]>[EndDate] || qryVault[Date Comments Returned]=0)
             )
     )
 
Upvote 0

Forum statistics

Threads
1,214,405
Messages
6,119,320
Members
448,887
Latest member
AirOliver

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top