Forum Discussion
Anonymous
5 years agoNot applicable
Countif problem
Hi everyone , I have a table indicating number of sold units per product for each customer key. What I want to do is calculating countif formula like excel by counting row disregarding blanks per...
Anonymous
5 years agoNot applicable
Hi Anonymous ,
You can create a calculated column as below:
Column =
COUNTROWS (
FILTER (
ALL ( 'Table' ),
'Table'[Item] = EARLIER ( 'Table'[Item] )
&& 'Table'[Subitem] = EARLIER ( 'Table'[Subitem] )
)
)
In addition, you can refer the content in the following links to get it.
COUNTIFS in DAX for Power Pivot or Power BI?
Best Regards
Anonymous
5 years agoNot applicable
Hi again everyone ,
Could you please help me regarding this issue ? Rather than using usual reply , I only need to have how to count the calculated column which is solved below(countif) by Anonymous .
Regards
Burak
Regards
Burak