I have two tables. On the first table, OnlineSales, each record describes a sale made online (so it has a Customer ID, Address info, Price, Quantity, etc.). On the other table, InStoreSales, each record describes an InStore sale (they are walk-in sales often paid in cash so there is no Customer ID or address info or anything like that).
I have a Line Chart visual that displays the Total Revenue earned by Day of Week (so Revenues earned on Mondays, Tuesdays, Wed, etc.). HOWEVER, this only shows me the Revenue from InStore Sales.
Basically, the visual uses this Measure for the Values section:
Revenue from InStore Sales = SUM(InStore[TotalPrice])
I also have a Measure which calculates the OnlineSales:
Revenue from Online Sales = SUM(OnlineSales[TotalPrice])
So to get the total I can just add the two.
What I am trying to do is create a Filter/Slicer that will give me the option of whether or not to include OnlineSales in the total revenue calculation. The problem is that the Legend for this visual already contains the Day of Week.
Any thoughts on how to go about this?