Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
9 years ago
Solved

not equal operator not filtering

I  am trying to calculate a measure using below formula , But its not filtering properly

  NOT EQUAL OPERATOR<> Not giving desired output

 

Please advice thanks

 Franchise = CALCULATE(

SUM('Model'[Sales]),
FILTER(
'Model',
('Model'[Store] = "1" && 'Model'[AccountID] <> "11435") ||
('Model'[Store] = "2" && 'Model'[AccountID] <> "15663") ||
('Model'[Store] = "3" && 'Model'[AccountID] <> "9863")  ||
('Model'[Store] = "4" && 'Model'[AccountID] <> "9483")  ||
('Model'[Store] = "5" && 'Model'[AccountID] <> "11435" )||
('Model'[Store] = "1" && 'Model'[AccountID] <> "8351") ||
('Model'[Store] = "3" && 'Model'[AccountID] <> "9288") ||
('Model'[Store] = "4" && 'Model'[AccountID] <> "9288") ||
('Model'[Store] = "5" && 'Model'[AccountID] <> "8351") ||
('Model'[Store] = "1" && 'Model'[AccountID] <> "4378") ||
('Model'[Store] = "2" && 'Model'[AccountID] <> "4378") ||
('Model'[Store] = "3" && 'Model'[AccountID] <> "8411") ||
('Model'[Store] = "4" && 'Model'[AccountID] <> "8411") ||
('Model'[Store] = "5" && 'Model'[AccountID] <> "4378") ||
('Model'[Store] = "6" && 'Model'[AccountID] <> "4378" )
)
)

  • Also is your number formatted as Text or Whole Number, Decimal Number or Fixed Decimal Number? As that could then also affect the <>

6 Replies

  • Hi there, do you have some sample data, as well as what the current output is and the desired output?

    It would appear that you might be able to create this filter in the Query Editor which will then make it a lot easier to create your measure without having so many conditions.
  • Also is your number formatted as Text or Whole Number, Decimal Number or Fixed Decimal Number? As that could then also affect the <>

    • Anonymous's avatar
      Anonymous
      Not applicable

      Thanks for your help GilbertQ it worked when I changed data type of parent id,  FROM TEXT TO WHOLENUMBER

       

      Thanks

      Mazhar

    • Anonymous's avatar
      Anonymous
      Not applicable

      Please help which opertor to be used if arguement to be filtered is set as "Text".  Operator "< >" is not working for filtering @ "Not Equal to".

      Thansk in advance

      • GilbertQ's avatar
        GilbertQ
        Super User
        Hi there

        Do you have a working example we could have?