Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Works
_group_weekday = IF( TLContactSummary[Day Series] = 2, DATEADD(TLContactSummary[Date], 3, DAY), TLContactSummary[Date])
Does not work
_group_weekday = IF( TLContactSummary[Day Series] = 2, DATEADD(TLContactSummary[Date], -3, DAY), TLContactSummary[Date]) ……………gives a null
This is for looking for Fridays numbers on Monday
Solved! Go to Solution.
Try:
_group_weekday = IF( TLContactSummary[Day Series] = 2,TLContactSummary[Date]+ 3, TLContactSummary[Date])
Try:
_group_weekday = IF( TLContactSummary[Day Series] = 2,TLContactSummary[Date]+ 3, TLContactSummary[Date])
What is the error message? Is TLContactSummary marked as a Dates table?