Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Inserting a calculated field straight into a visualization

I am trying to insert a calculated field/column straight into a matrix. The reasoning for this is that I have built a matrix that contains data from multiple different tables and the tables are not a...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Anonymous ,

    If the columns are from different tables, Please try to use a measure.

    Then create a measure.

    measure =
    (
        MAX ( Table[FeeRev] ) + MAX ( table1[Interchange] )
            + MAX ( table[Breakage] )
    )
        - (
            MAX ( table[Fee Expense] ) + MAX ( table[Total Bank Fees] )
                + MAX ( table[Uncollectable)+ max(table[Overhead] )
                + MAX ( table[SMS Fee] )
                + MAX ( table[Call Center Fee] )
        )
    

    How to Get Your Question Answered Quickly 

     

    If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

     

    Best Regards
    Community Support Team _ Polly

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