I am trying to return the variance values between rows based off of multiple filter values.
Data set looks like this:
Bid Name | Service Area | Task Name | Resource | Hours | Revenue |
---|---|---|---|---|---|
Bid 1 | SA1 | Fix the lights | R1 | 75 | 100 |
Bid 2 | SA1 | Fix the lights | R1 | 100 | 175 |
What I am looking for, is something like this:
Slicer 1 |
---|
Bid 1 (selected) |
Bid 2 |
Slicer 2 |
---|
Bid 1 |
Bid 2 (selected) |
Service Area | Task Name | Resource | Hours | Revenue |
---|---|---|---|---|
SA1 | Fix the lights | R1 | 25 | 75 |
I have tried a lot of variations using calculate and all selected and tried copying the table and using one slicer on table 1 and the other on table 2. A few nuances:
- I need the table to return only rows where there are variances
- If the same bid is selected in both slicers, the values should return nothing (as there should be no variances
If there is a better way to do this without the slicers I am fine to do it without.
Any help is greatly appreciated.