I wrote a UDF that does this for you and mimics Excel networkdays.
https://github.com/DataToolsPro/SnowUDFExcel
Ends up looking like the following. The third argument that is NULL is a holidays array. You can
I wrapped the UDF in a condition to checks if it is >2.
SELECT
IFF (
NETWORKDAYS("Date1" , "Date2" , NULL) as DAYS FROM > 2 , 'Grater than 2', 'Less or equal to 2') AS DAYCOMPARE
FROM
DB_NAME.SCHEMA_NAME.TABLE_NAME;