Forum Discussion

bilingual's avatar
bilingual
Helper V
3 years ago
Solved

Group calculated measures

Hi, i have made a measure which calculates percentage of total:   Pct. af total = DIVIDE(SUM(Data[Antal rejser]);CALCULATE(SUM(Data[Antal rejser]);ALL(Data[Name]));BLANK())   I want to create a ...
  • StefanoGrimaldi's avatar
    StefanoGrimaldi
    3 years ago

    for going by greg suggestion to create a disconected table just make a table that returns a single column and row with null value and just that table as disconected, 

    example: 

    Table = DataTable("Name", STRING,  
                   "null", STRING  ,{  {"1","0"}  }  )  
     
    and the measure have home section to define in the table you want to home it them apply greg indstructions for the measure itself, or use the Dax estudio or tabular to create the group.