Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Countif Query Power BI

Hi,

 

I am new to power BI, need some sort of solution.

 

As we use Countif in excel with * to Count occurrence of some text like.

Cell1 TextA

Cell2 TextA,TextB

Cell3 TextB

 

and if I Use Countif(Cell1:Cell3,"*"&"TextA"&"*") it will give result 2 as in Excel.

 

is there any way around to do same in Power BI

 

Thanks in Advnace !

 

Regards

  • Anonymous's avatar
    Anonymous
    5 years ago
    New Measure
    CALCULATE( COUNT('Table'[Column]), find("textA" , 'Table'[Column],1,0) > 0 )

2 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable
    New Measure
    CALCULATE( COUNT('Table'[Column]), find("textA" , 'Table'[Column],1,0) > 0 )
    • Anonymous's avatar
      Anonymous
      Not applicable

      Thanks It worked !