Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Dynamic Table - Part 3 adding TAU Value

Hi Experts   1 m referring to the folloiwing Kendall's Tau Quick Measure here: https://community.powerbi.com/t5/Quick-Measures-Gallery/Kendall-s-Tau/m-p/625107.   This is a calculation that ws cr...
  • Anonymous's avatar
    Anonymous
    7 years ago
    New table =
    FILTER (
        ADDCOLUMNS (
            VALUES ( PMS_COMPLAINT[FISCAL_MON_START_DT] ),
            "CountComplaints", CALCULATE ( COUNTROWS ( PMS_COMPLAINT ) ),
            "__Index", RANKX ( PMS_COMPLAINT, PMS_COMPLAINT[FISCAL_MON_START_DT],,, DENSE )
        ),
        [FISCAL_MON_START_DT] <> BLANK ()
    )