<aside>
💡 Use Week Column Output for Titles: click and drag on the Week column to select the cells and copy them, then select the same rows in the Name column and paste.
</aside>
<aside>
⚠️ Change lowercase w to uppercase W if your weeks start on Monday.
</aside>
empty(prop("Dates")) ? "" : ("Week " + formatDate(prop("Dates"), "w"))
empty(prop("Dates")) ? ""
If Dates is empty, display nothing.
: ("Week " + formatDate(prop("Dates"), "w"))
Otherwise display Week and week number.