Forum Discussion

Gwhiz's avatar
Gwhiz
Helper I
6 years ago
Solved

Measure Won't Total

How can I get the following measure to total? It is already formatted as a number but will not total.   HIPAA = iferror( If(search("HIPAA",min('Quotes'[Legal]))>0,1,0), 0)
  • amitchandak's avatar
    6 years ago

    Try something like that


    HIPAA =
    iferror(
    sumx('Quotes',If(search("HIPAA",'Quotes'[Legal],1,0)>0,1,0)),
    0) //edited