Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone!
Thank you for seeing my question, it´s probably very basic and silly question, but I just dont know how to do this
I have a table similar to this one:
I want to make a bar chart for Stock=A but only for months 2 and 3.
I usually would be using:
Dimension:
=Month
Measures:
Sum({<Stock={'A'}>}USD)
But that would include months 1, 2 and 3
How do I select just 2 and 3?
THANKS!!!
Try this
Sum({<Stock = {'A'}, Month = {'2', '3'}>} USD)
HI Alejandro,
You can change you set from:
Sum({<Stock={'A'}>}USD)
to
Sum({<Stock={'A'},Month={2,3}>}USD) if you want a static view or
Sum({<Stock={'A'},Month={">=$(Max(Month)-1)"}>}USD)
Try this,
Sum({<Stock={'A'}, Month = {' *insert months you want* '} >}USD)
For Example:
Sum({<Stock={'A'}, Month = {'2','3'} >}USD)