Seems someone changed their mind re function formats
Eg
Online Help: Uses the semi-colon as a separator
=AND(Logical 1 [; Logical 2 [; … [; Logical 255]]])
The logical values of entries 12<13; 14>12, and 7<6 are to be checked:
=AND(12<13;14>12;7<6) returns FALSE.
=AND(FALSE();TRUE()) returns FALSE.
The reality is that the comma is used as a separator.
Any more tail chasing gems ?