Reputation: 1
I have a column A1:A100 which all cells are a list of the days of the month. one the other column B1:B100 I want to say which day of the week the text on A column is.
tried this:
=IF(A2="01/04/2021"; "thursday"; "")
cant make it work for more 29 options
I need some help here
Have a nice weekend
Upvotes: 0
Views: 59
Reputation: 727
Try the WEEKDAY function and wrap it in the TEXT function:
=TEXT(WEEKDAY("01/04/2021", 1), "dddd")
Upvotes: 3