Forum Discussion
SerenellaWonder
4 years agoFrequent Visitor
Conteggio progressivo ad una determinata data
Salve ho bisogno di una formula che mi faccia il conteggio dei campi di una colonna ad una determinata data. E'possibile?
BA_Pete
4 years agoSuper User
Hi SerenellaWonder ,
You might need to add a bit more information to your post, but if I understand correctly, you can use a measure like this:
_noofRows = COUNTROWS(yourTable)
or this:
_noofDistinctValues = DISTINCTCOUNT(yourTable[yourColumn])
Both of these will count the number of rows in a table/column.
You would then either put one of these measures into a visual with your date column and/or use a slicer which contains your date field to select the date.
Pete