From gustav at cactus.dk Thu Aug 15 04:59:45 2019 From: gustav at cactus.dk (Gustav Brock) Date: Thu, 15 Aug 2019 09:59:45 +0000 Subject: [AccessD] Invalid procedure call error after Windows August update In-Reply-To: References: Message-ID: Hi all You may meet this error also in Windows 10 after the latest update. It is the third topic here: August 13, 2019?KB4512488 (Monthly Rollup) Examples from real life (though uncommon code) can be seen here: Run Time Error 5 when initializing a 2D array Sending object array to variant works before August roll out of Version 1808 (Build 10730.20370), but fails after update I can replicate the error using the first example on Windows 10 version 1903 build 18362.295. /gustav From fhtapia at gmail.com Sat Aug 24 07:12:55 2019 From: fhtapia at gmail.com (fhtapia at gmail.com) Date: Sat, 24 Aug 2019 05:12:55 -0700 Subject: [AccessD] SQL Saturday in San Diego, Sept 21st Message-ID: Hey everyone, I dunno how many of you attend the Sql Saturday events by Pass but thought I?d comment on these two lists. https://www.sqlsaturday.com/909/eventhome.aspx While the list is dedicated to Access, more business are migrating towards Power Bi reporting tools with Sql backends (or for smaller business sql express). Stop by and check out how many professionals are leveraging the latest Ms tools. Thanks, Francisco @seecoolguy -- -Francisco From gustav at cactus.dk Mon Aug 26 04:57:11 2019 From: gustav at cactus.dk (Gustav Brock) Date: Mon, 26 Aug 2019 09:57:11 +0000 Subject: [AccessD] Calculate quartiles In-Reply-To: References: Message-ID: Hi all For some strange reason, my latest article and code project is about quartiles and medians. It features a main function and two domain-type functions: - Quartile - DQuartile - DMedian While calculating the median is easy, there is no single "correct" calculation method for quartiles. Excel features two methods, some math and statistic packages offer some more. In total, I have located no less than twenty methods for various purposes: https://www.experts-exchange.com/articles/33718/20-Varieties-of-Quartiles.html If you don't have an account, browse for the link: Read the full article. Code is also on GitHub: https://github.com/GustavBrock/VBA.Quartiles The documentation on calculation methods to find is sparse, so comments are most welcome. /gustav