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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.