Forum Discussion
Filtering measure with different behaviours
- 6 years ago
MigWare ,
Card visual must display same value as total value on crosstab if it is the same measure. It is the same number, just different visualization.
Try to remove .day part here: Table[worked_date].[Day])
I tried to replicate data and put some dummy data, if i add .Day i get 366 both in crosstab and card. If i remove that part i get correct data both in crosstab and card.
Without .Day:
With .Day:
MigWare
Try this please:
Number of Days worked =
CALCULATE(
COUNTROWS(Table),
Table[Type]="In the field",
Table[status]="Submitted"
)
________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon on the right if you like this reply 🙂
Thanks Fowmy but that´s counting all the in the field and submited and it´s bypassing the date field.
I need to count the date, because user A has 5 visits in day 14 and that only counts has one day in the field, not 5. Hope that clears the info