Forum Discussion
- QuickBaseCoachDQrew Captainno problem
Make a formula checkbox field called [Record was created on a weekend?]
DayOfWeek(ToDate([Date Created])) = 6 // Saturday
or
DayOfWeek(ToDate([Date Created])) = 0 // Sunday
Then you can make a report to filter on that field.
The Day of Week function returns the day number of the week and Sunday is day zero. Monday is day 1. etc. - jrossausiscomQrew Assistant CaptainAwesome! I will give this a test and report back it if works or explodes.
- jrossausiscomQrew Assistant CaptainHm, are you saying to created a calculated column?
- QuickBaseCoachDQrew CaptainI suggest making an actual formula checkbox field. Then use that field as a filter in the report.
- jrossausiscomQrew Assistant CaptainSo I was able to get what I needed but via a different method somewhat. I tried using the code provided above but it would always error off when I put in our column name.
I ended up having a calculated column that shows the number of the day, and then told the report to only show 0 or 6
:)