Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Solved! Go to Solution.
Hi,
Replace SELECTEDVALUE() with MIN().
Hope this helps.
Hi,
Replace SELECTEDVALUE() with MIN().
Hope this helps.
Hi @Anonymous
your slicer returns a range and not one distinct value.
Returns the value when the context for columnName has been filtered down to one distinct value only. Otherwise returns alternateResult.
https://docs.microsoft.com/en-us/dax/selectedvalue-function
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @mwegener
Could you please tell me what can i use instead of selected value to get the above requirement. i used values also still my requirement is not working.
Thank you.
@Anonymous as Ashish_Mathur suggest, use MIN or MAX function to get the single value from the date range.
Measure =
IF (
YEAR ( MIN('Calendar'[Date] )) = YEAR ( TODAY () )
&& MONTH ( MIN('Calendar'[Date] )) = MONTH ( TODAY () ),
"Yes",
"No"
)
Depending on how you want logic to work, change MIN to MAX. For example, if you have selected date Aug 01, 2019 to Nov 30th 2019, MIN will return Aug 01, 2019 and will compare against TODAY(), MAX will return Nov 30th, 2019 and will compare against TODAY()
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Hi @Anonymous
use MIN
Measure =
IF (
YEAR ( MIN ( 'Calendar'[Date] ) ) = YEAR ( TODAY () )
&& MONTH ( MIN ( 'Calendar'[Date] ) ) = MONTH ( TODAY () );
"Yes";
"No"
)
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
75 | |
69 | |
68 | |
45 | |
41 |
User | Count |
---|---|
63 | |
41 | |
30 | |
28 | |
28 |