Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Measures with Date Tables

Hi,   I am very new to Power BI and I am having trouble using a measure with a date table.   I created a date table for looking up Dates = CALENDAR(TODAY()-1000,TODAY()+1000)   within which I ...
  • parry2k's avatar
    parry2k
    7 years ago

    Anonymous sorry missed a bracket

     

    SLA % = 
    VAR d = 
    DIVIDE (
      SUM ( Table1[Incident Breached] ),
      SUM ( Table1[Count])
    )
    RETURN
    IF (ISBLANK(d), BLANK(),1-d)