Forum Discussion

Huei's avatar
Huei
Frequent Visitor
4 years ago
Solved

Count Measure Values

Hi Guys,   I need help,    Below are my current result   CustomerName Status SalesAmount PY SalesAmount Customer 1 Growing 167,088 49,588 Customer 2 New 34,470 0.00 Custome...
  • lbendlin's avatar
    lbendlin
    4 years ago

    "i change to use calculated column"

     

    Why?  I thought your goal was to do everything with measures?

    Here is the formula for the calculated column version:

    Column Group = 
    SWITCH(TRUE(),
    ISBLANK([PY SalesAmount]) &&  ISBLANK([SalesAmount]),"Inactive",
    ISBLANK([PY SalesAmount]) &&  not ISBLANK([SalesAmount]),"New",
    not ISBLANK([PY SalesAmount]) &&  ISBLANK([SalesAmount]),"Lost",
    [SalesAmount]>[PY SalesAmount],"Increasing",
    [SalesAmount]<[PY SalesAmount],"Declining",
    "Same")