Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply

Change the filter on a chart to monthly based on selecting a date in the slicer.

Data - two columns dates and placement #'s

CharlotteCity12_1-1682018315323.png

 

What I want is

When I select a date from a slicer i want to see totals per day within the month where I selected a date..

 

E.G. if I select: 1/3/23, I want to see:

 

CharlotteCity12_2-1682018315328.png

 

 

If I select 2/5/23 I want to see:

CharlotteCity12_0-1682018299060.png

 

2 ACCEPTED SOLUTIONS
MohammadLoran25
Super User
Super User

Hi @CharlotteCity12 ,

Assume you have 'DateTable' which has relationship with your 'PlacementTable'.

And you have 'SecondDateTable' which does not have any relationship to your 'PlacementTable' and 'DateTable'.

 

1-Put Date column from 'SecondDateTable' as your slicer to select the date you want.

 

2-Put Date column from 'DateTable' on your X-Axis.

 

3-Create the measure below and put it as your Y-Axis:

 

NoOfPlacement=COUNTROWS(PlacementTable)

 

 

4-Create the measure below and put it as a "filter on this visual" from "filterpane" and set it to "greater than or equal to 1" :

 

FILTERONVISUAL =
COUNTROWS (
    FILTER (
        DateTable,
        MONTH ( DATETABLE[Date] ) = MONTH ( SELECTEDVALUE ( SECONDDATETABLE[Date] ) )
            && YEAR ( DATETABLE[Date] ) = YEAR ( SELECTEDVALUE ( SECONDDATETABLE[Date] ) )
    )
)

 

 

Then with changing your slicer from step1, the result would be same as what your are looking for. (Do not forget that you can turn on the show items with no data or turn it off on your visual to show or not show the days of the month without any placement)

 

If this answer helped you, mark it as an kudoed accepted solution.

Regards,

Loran

 

View solution in original post

You're welcome @CharlotteCity12 

Happy I could solve it !

View solution in original post

3 REPLIES 3

Loran, You are the best!  THANK you so much for your quick response... It worked perfectly!!!  Dannio

You're welcome @CharlotteCity12 

Happy I could solve it !

MohammadLoran25
Super User
Super User

Hi @CharlotteCity12 ,

Assume you have 'DateTable' which has relationship with your 'PlacementTable'.

And you have 'SecondDateTable' which does not have any relationship to your 'PlacementTable' and 'DateTable'.

 

1-Put Date column from 'SecondDateTable' as your slicer to select the date you want.

 

2-Put Date column from 'DateTable' on your X-Axis.

 

3-Create the measure below and put it as your Y-Axis:

 

NoOfPlacement=COUNTROWS(PlacementTable)

 

 

4-Create the measure below and put it as a "filter on this visual" from "filterpane" and set it to "greater than or equal to 1" :

 

FILTERONVISUAL =
COUNTROWS (
    FILTER (
        DateTable,
        MONTH ( DATETABLE[Date] ) = MONTH ( SELECTEDVALUE ( SECONDDATETABLE[Date] ) )
            && YEAR ( DATETABLE[Date] ) = YEAR ( SELECTEDVALUE ( SECONDDATETABLE[Date] ) )
    )
)

 

 

Then with changing your slicer from step1, the result would be same as what your are looking for. (Do not forget that you can turn on the show items with no data or turn it off on your visual to show or not show the days of the month without any placement)

 

If this answer helped you, mark it as an kudoed accepted solution.

Regards,

Loran

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.