Recall & Review
beginner
What does the TEXT function do when formatting dates in Excel?
The TEXT function converts a date into text in a specific format you choose, like "dd/mm/yyyy" or "mmmm dd, yyyy". It helps show dates exactly how you want them.
Click to reveal answer
beginner
How would you format the date in cell A1 to show as "March 15, 2024" using TEXT?
Use the formula =TEXT(A1, "mmmm dd, yyyy"). This changes the date to full month name, day with two digits, and four-digit year.
Click to reveal answer
beginner
What does the format code "dd/mm/yyyy" mean in the TEXT function?
"dd" means day with two digits, "mm" means month with two digits, and "yyyy" means four-digit year. So a date like March 5, 2024 becomes 05/03/2024.
Click to reveal answer
intermediate
Why use TEXT to format dates instead of changing cell format?
TEXT creates a text string with the date in the format you want, which you can combine with other text or formulas. Changing cell format only changes how the date looks but keeps it as a date value.
Click to reveal answer
intermediate
What happens if you use TEXT on a date but give a wrong format code?
Excel may show an error or unexpected text. The format codes must be correct for dates, like "dd", "mm", "yyyy". Wrong codes won't format the date properly.
Click to reveal answer
Which formula shows the date in cell A1 as "15-Mar-2024"?
✗ Incorrect
The format "dd-mmm-yyyy" shows day as two digits, month as three-letter abbreviation, and four-digit year.
What does the format code "mmmm" show in the TEXT function?
✗ Incorrect
"mmmm" shows the full month name like "January", "February", etc.
If A1 contains a date, what does =TEXT(A1, "yyyy/mm/dd") return?
✗ Incorrect
TEXT converts the date to text in the format year/month/day.
Why might you use TEXT to format a date inside a sentence?
✗ Incorrect
TEXT lets you turn a date into text so you can join it with other words in a sentence.
What is the result of =TEXT(A1, "dd/mm/yy") if A1 is March 5, 2024?
✗ Incorrect
"dd/mm/yy" shows day and month as two digits and year as two digits.
Explain how to use the TEXT function to format a date in Excel.
Think about how TEXT changes date appearance and why you might want text output.
You got /4 concepts.
List common date format codes used inside the TEXT function and what they mean.
Focus on day, month, and year codes.
You got /5 concepts.