Forum Discussion
Anonymous
3 years agoNot applicable
Rolling Average Using Index (NOT DATE)
Dear all, I would like to ask , "What are examples of workable coding that I can try using if I need to perform rolling average of 30 weeks using the INDEX row and NOT Dates?" because based on my re...
- 3 years ago
Anonymous So like:
Better RA = VAR __Index = MAX('Table'[Index]) VAR __MinIndex = __Index - 30 VAR __Table = FILTER(ALLSELECTED('Table'),[Index] < __Index && [Index] >= __MinIndex) RETURN AVERAGEX(__Table,[Value])Note, I pretty much just replaced [Date] with [Index]...
Anonymous
3 years agoNot applicable
Hello everyone,
New to the forum and first post. I was wondering which command to use to get the following results in power bi.
I am comparing scores to see if they are less than or greater than a certain range and thus helping with the decision/outome. The excel formula is working, how can i set up the same in Power bi. below is a screenshot showing the formula etc
- Greg_Deckler3 years ago
Community Champion
Anonymous Please post as a new topic.