Forum Discussion
Anonymous
4 years agoNot applicable
Summing Values BETWEEN Two Dates AND Count consecutive days In Power BI
如何寫出出量值,可以計算出篩選的範圍日期,每天連續請求2件,天算超過一次
- Anonymous4 years ago
Hi Anonymous ,
Create measure.
mod_measure = MOD(MAX('Table'[rank]),2)Over_TWO_measure = var _current=SUMX(FILTER(ALL('Table'),'Table'[Date]=MAX('Table'[Date])),[count]) var _next= IF( MAX('Table'[Date])=MINX(ALL('Table'),'Table'[Date]),_current, SUMX(FILTER(ALL('Table'),'Table'[Date]=MAX('Table'[Date])-1),[count])) return IF( _current=_next&&MAX([count])>=2&&[mod_measure]=0,1,0)Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
lbendlin
4 years agoSuper User
Here is a proposed solution as a calculated column. I am not sure if you are distinguishing between odd and even days?
- Anonymous4 years agoNot applicable
no odd and even numbers, but dates are not double counted,I want like this
THANKS