USERELATIONSHIP + slicer selecting?

sherifffruitfly

New Member
Joined
Dec 21, 2013
Messages
8
hi all,

from googling, i see that i have the classic use-case for userelationship - multiple date cols (requesteddate, shipdate, deliverdate), and then product info joined to it. my typical pivottable with this data has dates as rows, products as cols, and quanties as their intersections.

what i would like, beyond the userelationship method of swapping, is a slicer, whose selections are Requested, Shipped, Delivered, and then somehow the dates in the table (& associated measures) update to reflect which relationship the user selected with the slicer.

is this possible?

thanks much for any tips,
sff
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Should be possible with a "disconnected slicer" (or maybe called "disconnected table"). I would google for those terms... I know there are easily 30 posts on PowerPivotPro.com that discusses those techniques.

The quicky version...

1. create (with just copy/paste) a dummy table in power pivot with the values: Requested, Shipped, Delivered
2. write a measure... say [SelectedDateType] := LASTNONBLANK(DateTypeDummyTable) --- this measure is just use to grab the currently selected value out of the slicer.
3. use switch or IF() to change a measure based on the selection...
IF ([SeletedDateType] = "Shipped", [MeasureThatUsesShippedDateViaUseRelationship]",
IF ([SelectedDateType] = "Delivered", ..., ...)
 
Upvote 0

Forum statistics

Threads
1,224,027
Messages
6,175,988
Members
452,692
Latest member
Emy12

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top