Forum Discussion

eyesem's avatar
eyesem
Helper I
6 years ago

Sum rows from visual table

Hi

 

I need some help with something that I guess must be very simple but can't figure out.

I have this visual object (table) with columns from different tables with quite a complex structure between them. I'd like to sum several of the columns from this table in a new column:

 

 

 

 

 

 

 

 

relationships

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

I tried with this calculations but both seem to be wrong:

 

F_Calculada = sumx('Consumo Click';'Consumo Click'[PFAnexo__c]) - sumx('Cotización de periodo';'Cotización de periodo'[GNF_CVCliente__c]) + sumx('Consumo Click';'Consumo Click'[GNF_descuentoClickAbs__c])
 
F_Calculada = sum('Consumo Click'[PFAnexo__c]) - sum('Cotización de periodo'[GNF_CVCliente__c]) + sum('Consumo Click'[GNF_descuentoClickAbs__c])
 
Any help?
 
Thanks!

4 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    It's a good practice if you avoid the measures that are designed keeping specific visualization in mind.

    Let us consider an example based on the data provided above.

    1. The years are identifiers for the rows in the table

    2. If any other column or row is added like month then the behavior of the measure will be different

    The part of your formula for the calculation the total measure would work well on the detail rows when iterating over VALUES(Table[Year] instead of Table itself:

    MyMeasure3 = SUMX(FILTER(VALUES(Table[Year]),[Amount]>1000),[Amount]-1000)
    However, VALUES(Table[Year]) would contain only one row while the filtered table is empty when [Amount]<=1000.

    This means that rows for years with [Amount] lower than 1000 should have a blank value. In case you want to have 0 instead of blank, you can just add 0 to the result:

    MyMeasure3 = SUMX(FILTER(VALUES(Table[Year]),[Amount]>1000),[Amount]-1000) + 0
    Hope this helps!!

    Admin

    Apps4rent | o365cloudexperts | clouddesktoponline

    • eyesem's avatar
      eyesem
      Helper I

      My problem is when trying to create a measure at the row level. If I sumx a variable from another table I get an out of memory error.

      In the table 'consumo click' this works fine:

      F_Calculada = sumx('Consumo Click';'Consumo Click'[PFAnexo__c])

      But this doesn't:

      F_Calculada = sumx('Consumo Click';'Consumo Click'[PFAnexo__c]) - sumx('Cotización de periodo';'Cotización de periodo'[GNF_CVClientePrima_Click__c])

       "The report ran out of memory, and the application must close"

       

      I just need to add 3 values I'm already seeing in my visual table for each row!