I have an example salestable of flowers as shown below.
I'm trying to make a pivot table that shows all sales of flowers that are sold in summer, but that also shows the sales if these flowers are sold in other seasons as well.
The end result should be a pivot table that only shows the records with 1.000 sales.
My formula for the measure "SummerSales" is as follows:
SummerSales:=
CALCULATE(
SUM(Tbl_Sales[Sales]);
Tbl_Sales[Season]="Summer"
)
It already shows 4 of the 7 lines but the red ones are missing
How can i make this work?
I was trying to involve VALUES but I can't manage to make a VALUES formule for all Flowers with Season=Summer... Maybe this is not possible.
I'm trying to make a pivot table that shows all sales of flowers that are sold in summer, but that also shows the sales if these flowers are sold in other seasons as well.
The end result should be a pivot table that only shows the records with 1.000 sales.
My formula for the measure "SummerSales" is as follows:
SummerSales:=
CALCULATE(
SUM(Tbl_Sales[Sales]);
Tbl_Sales[Season]="Summer"
)
It already shows 4 of the 7 lines but the red ones are missing
How can i make this work?
I was trying to involve VALUES but I can't manage to make a VALUES formule for all Flowers with Season=Summer... Maybe this is not possible.