Forum Discussion
QuickbaseAdmin4
3 years agoQrew Member
To sort any confusion, I am not an admin of QuickBase. This is the name of our administrative QuickBase account in our organization that handles all pipelines and webhooks. Hope I am not setting any false assumptions!
------------------------------
Quickbase Admin
------------------------------
------------------------------
Quickbase Admin
------------------------------
- MarkShnier__You3 years agoQrew LegendTry this formula. Replace [My Date Field] with your own field.
var date LastThursday = FirstDayOfWeek([My Date Field])-Weeks(1) + Days(4);
var date CurrentThursday = $LastThursday + Weeks(1);
If(
DayOfWeek([My Date Field])<=3, $LastThursday,
DayOfWeek([My Date Field])>=4, $CurrentThursday)
//E.g., if today is Sunday-Wednesday, the formula will return the date for the Thursday of //last week. If today is Thursday-Saturday, the formula will return the date for the //Thursday of the current week.
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------- QuickbaseAdmin43 years agoQrew MemberThank you Mark, that worked perfectly!
------------------------------
Quickbase Admin
------------------------------