Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Dax help

Hello World, I have two pics here. One in excel (blue color) and anothetr in Power Bi.  I have created a matrix in Power Bi with age category and transactions.  Now I want to calculate th...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Anonymous ,

     

    I think you can try code as below to create a measure.

    Payment success Rate =
    VAR _Total =
        SUMX ( ALLSELECTED ( 'Table' ), 'Table'[Transactions] )
    VAR _Transactions =
        CALCULATE ( SUM ( 'Table'[Transactions] ) )
    RETURN
        DIVIDE ( _Transactions, _Total )

    My Sample:

    Result is as below.


    Best Regards,
    Rico Zhou

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.