For multiple conditions, logical operators such as AND OR are used.
To filetr results to those related to Alabama and same day delivery, Create a calculated field:
Name: Alabama and Same Day
Formula: UPPER([State])='ALABAMA' AND UPPER([ShipMode])='SAME DAY'.
Add the new measure to filter pane. In the table, from the states and ship modes, only the filtered one is presented
We want to see the profitability of our sales
Create a Calculated Field:
Name: Profitable
Formula:
IF SUM([Profit]) > 0 THEN 'Profitable'
ELSE 'Unprofitable'
END