Forum Discussion

coetseem's avatar
coetseem
Frequent Visitor
2 years ago
Solved

DAX Formula

Good day,    I am looking for a dax formula that can caclulate a % over each status.   Meaning Churn / Opening ARR = -2.8 but i want to do this for all statuse below in one coloum.   Each statu...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi coetseem ,

    Is this column the sum of all your clients?

     Use the following DAX expression to create  measures

    value = SUM('Table'[ARR Value])
    Measure = 
    VAR _a = SUMXX(FILTER(ALL('Table'),'Table'[Reporting Status] = "Opening ARR"),[ARR Value])
    RETURN DIVIDE([value],_a)

    If you simply want to see the values for a single user, put the user field in the slicer.