Forum Discussion
Anonymous
3 years agoNot applicable
Calculate consecutive backlogs over a specific threshold value.
I have a sample data table with given Columns A, B and E. Need to calculate Columns C and D as outputs in Power BI and use Col D in Histogram. Giving a Cyclic reference error as it needs to calculate...
- 3 years ago
Anonymous you can write a measure like this
Measure = CALCULATE ( [dropPlusRollOver], OFFSET ( -1, DISTINCT ( ALL ( 'fact' ) ), ORDERBY ( 'fact'[Date], ASC ) ) ) + MAX ( 'fact'[Drop] )PFA
smpa01
Community Champion
3 years agoAnonymous you can write a measure like this
Measure =
CALCULATE (
[dropPlusRollOver],
OFFSET ( -1, DISTINCT ( ALL ( 'fact' ) ), ORDERBY ( 'fact'[Date], ASC ) )
)
+ MAX ( 'fact'[Drop] )
PFA
- Anonymous3 years agoNot applicable
Thanks for the response but Column C and Column D have to be output using Column A and Column B and a capacity parameter. i think you used them as input for measures.
Also i need to sho highlighted Column D in a histogram visual.