Forum Discussion

Victorsam's avatar
Victorsam
Frequent Visitor
3 years ago
Solved

(Blank) on Card

My 'Transactions' table has the following columns; [Account Type], [Account Group], [Account Name], [Year], [Amount], and [Activity]. I have created a measure to get the revenue of an activity. i.e...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi, 

    Have you tried the below?
    Revenue = CALCULATE(
                             Sum( Transactions[Amount]),
                                      FILTERTransactions
                                              Transactions[Account Type] IN {"Income", "Other Income"}
                                               && Transactions[Activity]="Dairy" 
                                        )
                                )