Forum Discussion
Anonymous
5 years agoNot applicable
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 Co...
- Anonymous5 years agoNew Measure
CALCULATE( COUNT('Table'[Column]), find("textA" , 'Table'[Column],1,0) > 0 )
Anonymous
5 years agoNot applicable
New Measure
CALCULATE( COUNT('Table'[Column]), find("textA" , 'Table'[Column],1,0) > 0 )
CALCULATE( COUNT('Table'[Column]), find("textA" , 'Table'[Column],1,0) > 0 )
Anonymous
5 years agoNot applicable
Thanks It worked !