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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

IF Condition result

Hello guys,

 

I have a formula that is something like this:

 

 

RoadmapStart = 
IF(
    IF(
        Roadmap[Aux] = "ROM",
        Roadmap[ROM Start].[Date],
        Roadmap[In Progress Start].[Date]
    ) < DATE(2020,01,01),
    DATE(2020,01,01),
    IF(
        Roadmap[Aux] = "ROM",
        Roadmap[ROM Start].[Date],
        Roadmap[In Progress Start].[Date]
    )
)

 

I was wondering if there is a "fancy" way to write the same thing, like using the result of the second if as a result. That would look something like this:

 

RoadmapStart = 
IF(
    IF(
        Roadmap[Aux] = "ROM",
        Roadmap[ROM Start].[Date],
        Roadmap[In Progress Start].[Date]
    ) < DATE(2020,01,01),
    DATE(2020,01,01),
    Result // Value
)

 

Thanks in advance,

1 ACCEPTED SOLUTION
AllisonKennedy
Super User
Super User

In this case, you could try variables:

Column=
VAR _Date = IF(
Roadmap[Aux] = "ROM",
Roadmap[ROM Start].[Date],
Roadmap[In Progress Start].[Date]
)
RETURN
IF(
_Date < DATE(2020,01,01),
DATE(2020,01,01),
_Date
)

Note though that variables are calculated when they are defined, not when they are used, so in some measures this can change their context. (not needed for this one, but good to know for future).

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

View solution in original post

1 REPLY 1
AllisonKennedy
Super User
Super User

In this case, you could try variables:

Column=
VAR _Date = IF(
Roadmap[Aux] = "ROM",
Roadmap[ROM Start].[Date],
Roadmap[In Progress Start].[Date]
)
RETURN
IF(
_Date < DATE(2020,01,01),
DATE(2020,01,01),
_Date
)

Note though that variables are calculated when they are defined, not when they are used, so in some measures this can change their context. (not needed for this one, but good to know for future).

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.