Reputation: 13
I need to use two formulas in a cell and get only one result.
These are the formulas that I need to combine:
Week days in Google Sheets are given by the formula in numbers (1,2,3 etc.). I don't need to see the numbers in any cell but directly the name of the day.
Is this possible? Thanks!
Upvotes: -1
Views: 130
Reputation: 37125
You do not need two formula. Use TEXT()
function. Try-
=TEXT(M4,"dddd")
Upvotes: 0