- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
DAX formula for if then else
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-07-2019 09:50 AM
Hi - I'm new to DAX and would like some guidance to write something for a new measure:
Trying to come with a calculation
(If selected month is January then use January Measure
Else
Regular measure)
Solved! Go to Solution.
Accepted Solutions
Re: DAX formula for if then else
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-10-2019 04:54 PM
Hi there - this question is probably better being asked in the Desktop forum rather than Developer, as a lot more DAX experts frequent that particular forum and could help you faster than in here.
That being said, it should be a case of the following, assuming:
- You have a measure called [January Measure] for the IF statement
- You have a measure called [Regular Measure] for the else portion
- You have a date table named Date and we're using the [Month] column to evaluate for a value of "January"
- You're including the above column in the visual you're using
- We'll call the measure [Conditional Measure]
Syntax would be as follows:
[Conditional Measure] = IF( SELECTEDVALUE('Date'[Month]) = "January", [January Measure], [Regular Measure] )
It should be a case of swapping these out with your fields and measures as necessary.
Here's some further reading on SELECTEDVALUE (the SQLBI guys are pretty much essential reading for anyone who wants to learn DAX - you should make dax.guide a regular place to visit if you haven't already )
Good luck!
All Replies
Re: DAX formula for if then else
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-10-2019 04:54 PM
Hi there - this question is probably better being asked in the Desktop forum rather than Developer, as a lot more DAX experts frequent that particular forum and could help you faster than in here.
That being said, it should be a case of the following, assuming:
- You have a measure called [January Measure] for the IF statement
- You have a measure called [Regular Measure] for the else portion
- You have a date table named Date and we're using the [Month] column to evaluate for a value of "January"
- You're including the above column in the visual you're using
- We'll call the measure [Conditional Measure]
Syntax would be as follows:
[Conditional Measure] = IF( SELECTEDVALUE('Date'[Month]) = "January", [January Measure], [Regular Measure] )
It should be a case of swapping these out with your fields and measures as necessary.
Here's some further reading on SELECTEDVALUE (the SQLBI guys are pretty much essential reading for anyone who wants to learn DAX - you should make dax.guide a regular place to visit if you haven't already )
Good luck!
Re: DAX formula for if then else
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Thursday
Thank you! that worked. Will post these kind of questions under Desktop forum from now on.