The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Jul 17, 2023 02:38 PM
Hello--
I have a base filled with content that we publish every day. I'd like a view where I only see content that is supposed to publish on a Monday though, but the options for dates don't have that capability. Any ideas on how to do it? Thanks!
Solved! Go to Solution.
Jul 17, 2023 04:54 PM
Hey @LaurenMaine, use {Publish Date} (the name of your field) where I used {Date} (that was a placeholder for the formula. Should work then!
Jul 17, 2023 04:10 PM
Hi @LaurenMaine, this is relatively simple to do using a new formula field and the onboard filtering feature.
First off, create a new formula field called "Day of the Week" or "DOW" and use the DATETIME_FORMAT operator to format the date field you mentioned in your question:
DATETIME_FORMAT({Date}, 'dddd')
This formula will return the day of the week ("Monday", "Tuesday", etc.). Once you have this, it's easy enough to simply create a new filter and configure it to only include "Monday":
Let me know if this works!
Jul 17, 2023 04:49 PM
Jul 17, 2023 04:54 PM
Hey @LaurenMaine, use {Publish Date} (the name of your field) where I used {Date} (that was a placeholder for the formula. Should work then!
Jul 17, 2023 04:59 PM
Amazing! Thanks for your patience with a novice!! That worked perfectly!!!