Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
I have 2 date slicers on my page, each fed from a different calendar.
The first allows users to selected the SaleWeek where our sales team agreed their sale with the client and input it into the system. This slicer has a field from the SaleDateCalendar.
The second allows users to choose months & years, to see where our revenue for the sale is booked. (We have a subscription based service so the revenue will be booked on certain SaleDate, but the money from the subscription will fall across many future months.) This slicer has a field from the MainCalendar.
When a date is chosen in the SaleDate slicer, I want the MainCalendar slicer to filter and only show the month/years that are greater than or equal to the month/year in the SaleDate slicer.
Is this possible please? Everything I've tried hasn't worked and I'm at a dead end.
Thanks very much.
Solved! Go to Solution.
Hi, @abloor
Try the measure formula as below and apply it to the visual filter pane.
Measure1 =
VAR year1 =
YEAR ( SELECTEDVALUE ( Table1[SaleDate] ) )
VAR monthno =
MONTH ( SELECTEDVALUE ( Table1[SaleDate] ) )
VAR year2 =
SELECTEDVALUE ( Table2[MainCalendar].[Year] )
VAR monthno2 =
SELECTEDVALUE ( Table2[MainCalendar].[MonthNo] )
RETURN
IF ( ( year2 = year1 && monthno2 >= monthno ) || ( year2 > year1 ), 1, 0 )
Best Regards,
Community Support Team _ Eason
Hi, @abloor
Try the measure formula as below and apply it to the visual filter pane.
Measure1 =
VAR year1 =
YEAR ( SELECTEDVALUE ( Table1[SaleDate] ) )
VAR monthno =
MONTH ( SELECTEDVALUE ( Table1[SaleDate] ) )
VAR year2 =
SELECTEDVALUE ( Table2[MainCalendar].[Year] )
VAR monthno2 =
SELECTEDVALUE ( Table2[MainCalendar].[MonthNo] )
RETURN
IF ( ( year2 = year1 && monthno2 >= monthno ) || ( year2 > year1 ), 1, 0 )
Best Regards,
Community Support Team _ Eason
Thanks very much @v-easonf-msft . This has worked perfectly.
Thank you for your clear response and example images - I was able to implement your idea in 1 min 😀
@abloor , Create a measure in the fact where this main calendar is joined
example
measure =
var _max =maxx(allselected(salescal), sales[date])
return
countrows(filter(sales, sales[date]>=_max))
In the main calendar slicer use this measure as visual level filter, check for non blank
Very similar approch discussed here