Forum Discussion
MiguelSaldana77
Resolver I
3 years agoAcumulate Formula with conditions
Hi everyone, I have a question about a Calculate Measure. In the next image, I have an example of the behavior that must had my Initial Balance and the Final Balance. I must say, that I have a...
MiguelSaldana77
Resolver I
3 years agoI can not paste the pbix , any idea why ?
lbendlin
Super User
3 years agoHere is some sample DAX code:
Initial Balance =
var d= min([Date])
return calculate(sum([Amount]),[Date]<d)
Final Balance =
var d= max([Date])
return calculate(sum([Amount]),[Date]<=d)