
Hi Neads,
Here’s the steps so you can see it broken down, and a consolidated formula where the temporary variables have been removed.
{start day} = WEEKDAY({Start Date})
{days apart} = DATETIME_DIFF({End Date},{Start Date},‘days’)
{days until sat} = 6-{start day}
{# sats} = ROUNDDOWN(1+({days apart}-{days until sat})/7,0)
{consolidated} = ROUNDDOWN((1+(DATETIME_DIFF({End Date},{Start Date},‘days’)-(6-WEEKDAY({Start Date})))/7),0)
Good luck!

Hi Neads,
Here’s the steps so you can see it broken down, and a consolidated formula where the temporary variables have been removed.
{start day} = WEEKDAY({Start Date})
{days apart} = DATETIME_DIFF({End Date},{Start Date},‘days’)
{days until sat} = 6-{start day}
{# sats} = ROUNDDOWN(1+({days apart}-{days until sat})/7,0)
{consolidated} = ROUNDDOWN((1+(DATETIME_DIFF({End Date},{Start Date},‘days’)-(6-WEEKDAY({Start Date})))/7),0)
Good luck!
You, good sir, are brilliant! Can’t say I ever would have gotten there on my own. Thanks so much for the help.