Forum Discussion

Michael09's avatar
Michael09
Frequent Visitor
8 years ago
Solved

COUNT including wildcard

Hi Totally new to Power BI and DAX but familiar with SQL. I'm trying to use a measure to count the number of unique refs in a field that begin with the number 7   The field contains data like:  ...
  • MikeJohnsonZA's avatar
    8 years ago

    Hi

     

    You can use the distinct count function to count distinct values and the calculate function to filter for the numbers starting with 7,

    your measure could look something like this

     

    My Measure:=CALCULATE(DISTINCTCOUNT(Table1[MyValue]),left(Table1[MyValue],1)="7")

     # You would need to change the table and column name