If I use NETWORKDAYS formula in two cases mentioned below, I get different answers.
Date_T column has dates in text format (formulas mentioned in Formulas_T column). Networkdays formula gives 22.
=NETWORKDAYS(DATE(VALUE(MID([Date_T]1, 7, 2)), VALUE(MID([Date_T]1, 4, 2)), VALUE(LEFT([Date_T]1, 2))), DATE(VALUE(MID([Date_T]2, 7, 2)), VALUE(MID([Date_T]2, 4, 2)), VALUE(LEFT([Date_T]2, 2))))
Date_D column has dates in Date format. Networkdays formula gives 21.
=NETWORKDAYS([Date_D]1, [Date_D]2)
Any ideas what is going on?