Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Data - two columns dates and placement #'s
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:
If I select 2/5/23 I want to see:
Solved! Go to Solution.
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
Loran, You are the best! THANK you so much for your quick response... It worked perfectly!!! Dannio
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
145 | |
85 | |
66 | |
52 | |
48 |
User | Count |
---|---|
215 | |
90 | |
83 | |
67 | |
59 |