Excel Sort FunctionThe new Excel SORT function is one of the new dynamic arrays that are available in Microsoft 365. […] February 12, 2023 in Excel tagged dynamic / sort / arrays / function by Mike
Excel SUMPRODUCT FunctionBelow is an example of the SUMPRODUCT function. SUMPRODUCT multiplies corresponding cells from multiple arrays and returns the […] December 4, 2022 in Excel tagged function / sumx / sumproduct by Mike
Excel VBA ProceduresA procedure is a series of VBA statements that resides in a VBA module. A module can hold […] September 16, 2018 in Excel tagged procedure / sub / routine / subroutine / function / Excel VBA Procedures by Mike
C# Anonymous FunctionsWhat are anonymoys functions? First of all, there is a page at Microsoft Docs that discusses Anonymous Functions […] August 9, 2018 in C# tagged function / lambda / methods / anonymous by Mike
SQL Server Aggregate Window Functions RaptorsThis post is another example of aggregate window functions. This time we are going to use some Toronto […] March 25, 2018 in SQL Server tagged window / raptors / running / aggregate / function / total / SQL Server Window Functions by Mike
SQL Server Aggregate Window FunctionsAggregate window functions in SQL Server are similar to grouped functions (SUM, AVG and so on) except that […] January 27, 2018 in SQL Server tagged group by / window / partition / cte / nested cte / select into / function / over / SQL Server Window Functions by Mike
SQL Server FunctionsThis post describes how you can create a user-defined function in SQL Server. We will start off with […] November 21, 2017 in SQL Server tagged function / functions by Mike
SQL Server DatetimeThe topic of date and time in SQL Server requires more attention than any of the other data […] April 6, 2017 in SQL Server tagged function / date / time / datetime / data by Mike
SQL Server Date Conversion FunctionHere we have a couple of code examples that work with dates. The first one gets today’s date […] February 7, 2017 in SQL Server tagged function / sql / date / Julian by Mike
SQL Server User-Defined FunctionsIn SQL Server, user-defined functions (UDFs) are similar to stored procedures, except that they do not support OUTPUT […] February 5, 2017 in SQL Server tagged functions / sql / clr / function by Mike
C# Functions Part 6 DelegatesA delegate is a type that enables you to store references to functions. Delegates are important parts of […] April 3, 2016 in C# tagged function / delegate / C# Functions by Mike
C# Functions Part 4 Out ParameterYou can pass values by reference. Also you can specify that a given parameter is an out parameter […] April 3, 2016 in C# tagged function / parameter / out / C# Functions by Mike