Forum Discussion
Optimize a Running Total
- 8 years ago
Hi Anonymous,
Try to change you measure to make the filter on the Global Table [Date]
Sign up = CALCULATE( COUNTROWS( 'Users Info' ); FILTER( 'Users Info'; 'Users Info'[Sign_up] <= MAX( 'Global Table'[Date] ) ) )Then place the 'Global Table'[Date] on the x-axis should work as expected.
Regards,
MFelix
Hi Anonymous,
Try to change you measure to make the filter on the Global Table [Date]
Sign up =
CALCULATE(
COUNTROWS( 'Users Info' );
FILTER( 'Users Info'; 'Users Info'[Sign_up] <= MAX( 'Global Table'[Date] )
)
)Then place the 'Global Table'[Date] on the x-axis should work as expected.
Regards,
MFelix
Hey MFelix,
Wow... Quite frustrating as I've spent a day scooting the internet to see if I could find someone with the same pattern.... I feel a bit dumb..
Thanks so much it worked, I have to precise for the people who might encounter the same pattern I had to remove the Bi-directionnal Cross-filtering between the two table (Users Info & Main table). Now it's one way: Users Info -> Main Table.
Thanks Felix,
L