A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
The only thing I don't completely understand is the use of the "&" key. Is the purpose of the "&" to tell Excell that what follows is a cell reference?
No. Ampersand ("&") is the concatenation operator. It creates a string.
Thus, for example, ">=" & A440 forms the string ">= 9/1/2022".
Actually, it forms the string ">= 44805" because 44805 is how Excel represents the date 9/1/2022 internally on systems that represent "short dates" in the MDY form.
In both cases, SUMIFS parses the string and understands that to mean "greater than or equal to the value 44805".
PS.... As long as A440 contains a numeric Excel date, it does not matter how it is formatted. But if we wrote literally ">= 9/1/2022" in the SUMIFS formula, 9/1/2022 might be (mis)interpreted as 9 Jan 2022 on systems that represent "short dates" in the DMY form, even though it might be interpreted as 1 Sep 2022 on your system. That is why it is better to use numeric dates -- for example, ">=" & DATE(2022,9,1) -- instead of date strings.