Forum Discussion

tlee's avatar
tlee
Regular Visitor
6 years ago
Solved

Help showing aggregate data

Hello, Thank you in advance for any help with this!   I am trying to chart Revenues, Stabilized Revenues and Total Costs over time.  My data is entered into the database as absolute values, not ch...
  • TomMartens's avatar
    TomMartens
    6 years ago

    Hey tlee ,

     

    1st create 4 measures and call them MAX Revenue, and so on, like so:

    MAX Revenue = MAX('<tablename>'[Revenue])

    Then create 4 additional measures and call them SUM of MAX Revenue (or somehting more suitable) like so:

    SUM of MAX Revenue =
    SUMX(
    	VALUES('<tablename>'[Item])
    	, [MAX Revenue]
    )

    These measures will be used on the line chart.

     

    Hopefully this is what you are looking for.

     

    Regards,

    Tom