Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Sum({<Shipment_Qty_Type={"In Pool"}>}total_qty) --This would filter the qty by qty type="In Pool"
Sample Excel file:
Item | Shipment Qty Type | Date | Quantity |
---|---|---|---|
A | typeA | June 2015 | 10 |
B | In Pool | NULL | 5000 |
A | In Pool | NULL | 200 |
Right now, when my filter is by Month say June2015. Whatever I select in that Month filter, the In Pool quantity will not show. How do I make that column ignore that Month filter?
Sum({<Shipment_Qty_Type={"In Pool"}, 1Month={June 2015}>}total_qty) --this will not work.
This will ignore selections in the Month field: Sum({<Month=,Shipment_Qty_Type={"In Pool"}>}total_qty)
Sum({<Shipment_Qty_Type={"In Pool"}, Month=>}total_qty)
Hmm...the expression were right, but I don't know why, it still doesn't ignore the filter.
As you can see, some of the InPool qty has no Month. Once I filter by month, it will not show 189,65 and 64.
I think you have multiple measures. Did you apply the Set Analysis in each measure ? I would suggest applying to all measures
can't do that. Each measure will have their own condition...sadly.
then what you need to do is a conditional dimension using if() that will evaluate the condition and display the dimenion value or NULL. Then enable checkbox 'show nulls' on the dimension to hide the rows that don't meet your condition.
ex: if ( <condition>, dimensionfield)
If you use a measure expression with set analysis that is fine, but you will have to wrap in aggr() function for it to evaluate at the right dimensional grain.
post a sample if you need help