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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Dax/selectedvalue

Hi,
 

Capture.PNG

Measure =
IF (
YEAR ( SELECTEDVALUE('Calendar'[Date] )) = YEAR ( TODAY () )
&& MONTH ( SELECTEDVALUE('Calendar'[Date] )) = MONTH ( TODAY () ),
"Yes",
"No"
)
 
can anyone clarify why my Measure is giving me NO even after selecting the current month.
 
ThankYou.
 
1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

Replace SELECTEDVALUE() with MIN().

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

5 REPLIES 5
Ashish_Mathur
Super User
Super User

Hi,

Replace SELECTEDVALUE() with MIN().

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi @Anonymous 

 

your slicer returns a range and not one distinct value.

 

SELECTEDVALUE

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.

Did I answer 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


Anonymous
Not applicable

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.

Did I answer 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


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.