Forum Discussion
Ron_Hockman1525
Apr 15, 2023Copper Contributor
Formula to match Day of Week Name
I want to get the day of the week from a date and then evaluate if that matches a cell with different days of the week. 8/28/2023 is a Monday (text(cell,"dddd") I want the formula to indicat there is one occurrence of Monday in the dayofweek cell, result would be 1. TY
For older versions of Excel, you may try the following formula...
=(LEN(A2)-LEN(SUBSTITUTE(A2,TEXT($B$1,"dddd"),"")))/LEN(TEXT($B$1,"dddd"))
For Excel 365, you may also try the following formula...
=SUM((TEXTSPLIT(A2,"; ")=TEXT($B$1,"dddd"))*1)
2 Replies
Sort By
- Subodh_Tiwari_sktneerSilver Contributor
For older versions of Excel, you may try the following formula...
=(LEN(A2)-LEN(SUBSTITUTE(A2,TEXT($B$1,"dddd"),"")))/LEN(TEXT($B$1,"dddd"))
For Excel 365, you may also try the following formula...
=SUM((TEXTSPLIT(A2,"; ")=TEXT($B$1,"dddd"))*1)
- rhockmanBrass ContributorThank you!