Formula to extract day of the week from a date field. Does anyone know how I can define a formula that returns Monday/Tuesday/Thursday etc from a date field? The only formula I can think of requires that I define a variable ( Sunday = Day (Date expression) + 7x; where x= integer between 0 and infinity)It needs to be UI-field. Here is a formula I found but skuid does not have “MOD”.CASE( MOD( Date__c - DATE(1900, 1, 7), 7), 0, “Sunday”, 1, “Monday”, 2, “Tuesday”, 3,“Wednesday”, 4, “Thursday”, 5, “Friday”, 6, “Saturday”,“Error”)Any ideas?