Team Performance vs. Target - with BOOKMARKS and TOGGLE
- 8 years ago
you mean Link option? You will find the Link option under FORMAT IMAGE - ACTION.
In the below example:
1. click 'Biondi' picture
2. select Format Image - Action - Bookmark / Biondi to link 'Biondi' picture to 'Biondi' bookmark
hope it helps. or is your questions really about Title option?
- 8 years ago
Alternatively to Bookmark you can use DRILLTHROUGH. similar result but faster, you only need to remember to rightclick instead of click. the way I do it:
1. import a table with Names + URL Image link
2. Create Front Page (with names + URL) and Detail Page
3. Setup Drillthrough option on Detail Page
4. rightclick Name to Drillthrough...
Filtered Detail Page opens
hope it helps
Hi Ongzph,
You'll need to do a little bit of work behind the scenes to do this, including writing a few dax formulas. First up you need to create a new 2-column table:
No Date Option
1 YTD
2 Past 30 Days
3 Past 90 Days
4 .... Keep going with all the time options you want.
Also create a new measure: Selected Timeframe:=min(Table[No]). (Eventually you will show the 'Date Option' on the chiclet slicer, and this measure will harvest your selection. Do not create any connections for this table.
Next up, in your main data table, you will need to write a new dax formula for each of the date options. You should be able to use time intelligence functions to help achieve some of these. E.g.
Sum YTD:=TOTALYTD(sum(Data[Values]), Dates[Dates Column], "31/12/2014") where the last value is your year-end date for any year (I've used UK format which may not be approriate for you).
Finally you need one new measure which utilises the SWITCH function:
Selected Measure:=SWITCH([Selected Timeframe],1,[Sum YTD],2,[Sum 30 Days],3,[Sum 90 Days]).
What this measure will do is change the measure depending on the selected chiclet. E.g. If you press 'Past 30 Days', it create the value 2 in the [Selected Timeframe] measure. That will result in selecting the [Sum 30 Days] part of the [Selected Measure].
Now create the chiclet slicer and put the column 'Date Option' as the values (remembering to Sort By [No] to get the values in the right order).
Hope this helps - but let us know if still confused.
Thanks,
M
Yes, I used the method described by Mike to create the Metric slicer (to select Units or Profit)
However, for the Period slicer (to select YTD, Last 30-days, etc) I used a different approach.
I created a New Table ('Period Table') which combines desired Periods (“Year To Date”, “Last 30 Days", etc) with dates from Date table, something like this:
Looks easy, but it's not. The 'Period Table' needs to be written in Advanced Query Editor (Home-Edit Query-Advanced Editor) which requires some M' knowledge. Fortunately you can find the code for it as well as a great explanation in Chris Webb's blog here.
Hope it helps
- kcantor8 years ago
Community Champion
Would you consider sharing the .pbix file?