Forum Discussion
Total Bookings Same Days Prior
- 5 years ago
Hi Anonymous ,
You could create a measure by the following formula:
PrevYearBTD = CALCULATE ( DISTINCTCOUNT ( Previous[User Id] ), FILTER ( ALL ( 'Previous' ), [Date] >= TODAY () - 365 - 7 && [Date] <= TODAY () - 365 ) )The final output is shown below:
If it's not right, please provide me with more details or share me with your .pbix file after removing sensitive data.
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
You could create a measure by the following formula:
PrevYearBTD =
CALCULATE (
DISTINCTCOUNT ( Previous[User Id] ),
FILTER (
ALL ( 'Previous' ),
[Date]
>= TODAY () - 365 - 7
&& [Date]
<= TODAY () - 365
)
)
The final output is shown below:
If it's not right, please provide me with more details or share me with your .pbix file after removing sensitive data.
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks v-yalanwu-msft I took your suggestion, tweeked slightly and its now working!