Forum Discussion
rcister
5 years agoFrequent Visitor
rocio
Hello. I need help I have the following table the column Count represents is one because it represents each row of overnight stays. I need to sum the Count column and be able to filter ...
- 5 years ago
Hi rcister,
You can create measure as:
Measure = CALCULATE( SUM('Table'[Count], ALL('Table') )Then you can apply the date slicer.
Best Regards,
LinkIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
v-xulin-mstf
5 years agoCommunity Support
Hi rcister,
You can create measure as:
Measure =
CALCULATE(
SUM('Table'[Count],
ALL('Table')
)
Then you can apply the date slicer.
Best Regards,
Link
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.