Forum Discussion

AlexIsac16's avatar
AlexIsac16
Regular Visitor
1 year ago
Solved

Monthly Revenue

Hi all,   Trying to create a calculated column that gives me the total revenue for that specific month, based on the value in the Ship Date column. So for instance, the total revenue for January sh...
  • Tahreem24's avatar
    1 year ago

    AlexIsac16  Try this DAX:

     

    Measure = CALCULATE(SUM('Table'[Revenue]),ALLEXCEPT('Table','Table'[Month]))