Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

What does <> mean?

Someone in a reply had used the symbol <>? What is this symbol called? I used it in the following Measure:    Total Spend No Acruals = CALCULATE(SUM(FactInvoiceHeader[Invoice Net Amount]), FactInv...
  • az38's avatar
    6 years ago

    Anonymous 

    it is not equal, yes.

    the same syntax as in SQL.

    "NOT IN ()" is also possible

  • amitchandak's avatar
    6 years ago

    Anonymous ,

    <> Not equal to

     

    In  is [A] in {1,2,4}

    or

    [A] in {"1","2","3"}

     

    not in should work like

    not([A] in {1,2,4})

    or

    not([A] in {"1","2","3"})