Forum Discussion
rgadbois
3 years agoFrequent Visitor
Create Baseline and Percentage Deviation from Baseline
Hi, I have a large report with all Sports Science data for athletes. One table I am using has all relevant data for a particular piece of technology, in which the columns are sorted Date, Athlete...
Greg_Deckler
Community Champion
3 years agorgadbois Maybe:
Baseline Measure = AVERAGEX(SUMMARIZE(FILTER(ALL('Table'),[Date]=DATE(2022,9,1)),[Athlete],"__Metric",SUM('Table'[Metric])),[__Metric])
Percent Diff Measure =
VAR __Current = AVERAGEX(SUMMARIZE('Table',[Athlete],"__Metric",SUM('Table'[Metric])),[__Metric])
RETURN
DIVIDE(__Current - [Baseline Measure],[Baseline Measure],0)
rgadbois
3 years agoFrequent Visitor
Thank your for your help! I seem to be close, but I keep getting the following error:
my table name is "CMJ" and the metric is "RSI-modified [m/s]"
- Greg_Deckler3 years ago
Community Champion
rgadbois Guessing you need one extra ] on your SUM('CMJ'[RSI - modified[m/s]]]])),...