Forum Discussion
Summer_PBI
3 years agoNew Member
Indexing Data :)
Hello, I would please like some help to create an index table. I have a 'date' table to which 'my data' table is joined to by 'date'. - format e.g 01/04/2021 Suppose I have a created a pivot ...
Greg_Deckler
3 years agoCommunity Champion
Summer_PBI Try:
Measure Ratio =
VAR __Value = [Measure] //whatever you currently have in your matrix
VAR __Average =
AVERAGEX(
ADDCOLUMNS(
SUMMARIZE(ALLEXEPT('Table',[Year]),[Month]),
"__Value",[Measure]
),
[__Value]
)
VAR __Result = DIVIDE(__Value, __Average)
RETURN
__Result