Forum Discussion
DHB
Helper V
2 years agoCounting Values in a Joined Table
Hi all, could anyone give me an idea how to count rows in a joined table please? I have a table of people (all unique records) joined to a table of dates (each person/date combination is uniq...
- 2 years ago
you need to just use COUNTROWS functions
measure =
COUNTROWS( 'your'table)+0
Ashish_Mathur
Super User
2 years agoHi,
Write this measure
Measure = calculate(countrows(Dates),Dates[Valid]="Valid")
Hope this helps.
DHB
Helper V
2 years agoThank you Ashish_Mathur that works well.
- Ashish_Mathur2 years ago
Super User
You are welcome.