How do I convert a date (from cell A1) to Monday's date within its week into cell B1?
S Sorsy Oct 8, 2008 #1 How do I convert a date (from cell A1) to Monday's date within its week into cell B1?
R Ron Rosenfeld Oct 8, 2008 #4 How do I convert a date (from cell A1) to Monday's date within its week into cell B1? Click to expand... What is the first day of the week? If the first day is Monday, then: =A1+1-WEEKDAY(A1+6) If the first day is Sunday, (so the Monday would be the day after Sunday) then: =A1+2-WEEKDAY(A1) --ron
How do I convert a date (from cell A1) to Monday's date within its week into cell B1? Click to expand... What is the first day of the week? If the first day is Monday, then: =A1+1-WEEKDAY(A1+6) If the first day is Sunday, (so the Monday would be the day after Sunday) then: =A1+2-WEEKDAY(A1) --ron
S Sorsy Oct 9, 2008 #6 This really helps. Thanks! Ron Rosenfeld said: What is the first day of the week? If the first day is Monday, then: =A1+1-WEEKDAY(A1+6) If the first day is Sunday, (so the Monday would be the day after Sunday) then: =A1+2-WEEKDAY(A1) --ron Click to expand...
This really helps. Thanks! Ron Rosenfeld said: What is the first day of the week? If the first day is Monday, then: =A1+1-WEEKDAY(A1+6) If the first day is Sunday, (so the Monday would be the day after Sunday) then: =A1+2-WEEKDAY(A1) --ron Click to expand...
S Sorsy Oct 9, 2008 #7 This really helps. Thanks! T. Valko said: One way: =1-WEEKDAY(A1,2)+A1 Click to expand...