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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
rkottap
Frequent Visitor

Create Calculated column based on Multiple IF Conditions and MAXX between two tables

Hi,

I need to create a column for the below Tableau function using DAX between two tables?


Output =

{FIXED [Epic Link], [ABC Review]: MAX (

IF Table1[ABC Review] = "ABC1" THEN Table2 [Planning1]

ELSEIF Table1[ABC Review] = "ABC2" THEN Table2 [Planning2]

ELSEIF Table1[ABC Review] = "ABC3" AND Table2 [XYZ1 Date] > Table2 [ABC2 Date] THEN Table2 [XYZ1 Date]
ELSEIF Table1[ABC Review] = "ABC3" AND Table2 [XYZ1 Date] < Table2 [ABC2 Date] THEN Table2 [ABC2 Date]
ELSEIF Table1[ABC Review] = "ABC4" AND Table2 [XYZ2 Date] > Table2 [ABC3 Date] THEN Table2 [XYZ2 Date]
ELSEIF Table1[ABC Review] = "ABC4" AND Table2 [XYZ2 Date] < Table2 [ABC3 Date] THEN Table2 [ABC3 Date]
ELSEIF Table1[ABC Review] = "ABC5" AND Table2 [XYZ3 Date] > Table2 [ABC4 Date] THEN Table2 [XYZ3 Date]
ELSEIF Table1[ABC Review] = "ABC5" AND Table2 [XYZ3 Date] < Table2 [ABC4 Date] THEN Table2 [ABC4 Date]
END)}

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @rkottap ,

 

Maybe you can try to modify formula like below and create calculated column:

Output =
VAR MaxValue =
    MAXX (
        FILTER (
            Table2,
            Table2[Epic Link] = Table1[Epic Link]
                && Table2[ABC Review] = Table1[ABC Review]
        ),
        SWITCH (
            TRUE (),
            Table1[ABC Review] = "ABC1", Table2[Planning1],
            Table1[ABC Review] = "ABC2", Table2[Planning2],
            Table1[ABC Review] = "ABC3"
                && Table2[XYZ1 Date] > Table2[ABC2 Date], Table2[XYZ1 Date],
            Table1[ABC Review] = "ABC3"
                && Table2[XYZ1 Date] < Table2[ABC2 Date], Table2[ABC2 Date],
            Table1[ABC Review] = "ABC4"
                && Table2[XYZ2 Date] > Table2[ABC3 Date], Table2[XYZ2 Date],
            Table1[ABC Review] = "ABC4"
                && Table2[XYZ2 Date] < Table2[ABC3 Date], Table2[ABC3 Date],
            Table1[ABC Review] = "ABC5"
                && Table2[XYZ3 Date] > Table2[ABC4 Date], Table2[XYZ3 Date],
            Table1[ABC Review] = "ABC5"
                && Table2[XYZ3 Date] < Table2[ABC4 Date], Table2[ABC4 Date],
            BLANK ()
        )
    )
RETURN
    MaxValue

vkongfanfmsft_1-1715060530037.png

vkongfanfmsft_0-1715060521193.png

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @rkottap ,

 

Maybe you can try to modify formula like below and create calculated column:

Output =
VAR MaxValue =
    MAXX (
        FILTER (
            Table2,
            Table2[Epic Link] = Table1[Epic Link]
                && Table2[ABC Review] = Table1[ABC Review]
        ),
        SWITCH (
            TRUE (),
            Table1[ABC Review] = "ABC1", Table2[Planning1],
            Table1[ABC Review] = "ABC2", Table2[Planning2],
            Table1[ABC Review] = "ABC3"
                && Table2[XYZ1 Date] > Table2[ABC2 Date], Table2[XYZ1 Date],
            Table1[ABC Review] = "ABC3"
                && Table2[XYZ1 Date] < Table2[ABC2 Date], Table2[ABC2 Date],
            Table1[ABC Review] = "ABC4"
                && Table2[XYZ2 Date] > Table2[ABC3 Date], Table2[XYZ2 Date],
            Table1[ABC Review] = "ABC4"
                && Table2[XYZ2 Date] < Table2[ABC3 Date], Table2[ABC3 Date],
            Table1[ABC Review] = "ABC5"
                && Table2[XYZ3 Date] > Table2[ABC4 Date], Table2[XYZ3 Date],
            Table1[ABC Review] = "ABC5"
                && Table2[XYZ3 Date] < Table2[ABC4 Date], Table2[ABC4 Date],
            BLANK ()
        )
    )
RETURN
    MaxValue

vkongfanfmsft_1-1715060530037.png

vkongfanfmsft_0-1715060521193.png

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

SaranKumarM
Frequent Visitor

Hi @rkottap 

 

could you please try with switch function as below

 

Result = SWITCH(TRUE(), MAX(Table1[ABC Review]) = "ABC1", Table2 [Planning1],
MAX(Table1[ABC Review]) = "ABC2", Table2 [Planning2],
MAX(Table1[ABC Review]) = "ABC3" && MAX(Table2 [XYZ1 Date]) > MAX(Table2 [ABC2 Date]), Table2 [XYZ1 Date],
MAX(Table1[ABC Review]) = "ABC3" && MAX(Table2 [XYZ1 Date]) < MAX(Table2 [ABC2 Date]), Table2 [ABC2 Date],
MAX(Table1[ABC Review]) = "ABC4" && MAX(Table2 [XYZ2 Date]) > MAX(Table2 [ABC3 Date]), Table2 [XYZ2 Date],
MAX(Table1[ABC Review]) = "ABC4" && MAX(Table2 [XYZ2 Date]) < MAX(Table2 [ABC3 Date]), Table2 [ABC3 Date],
MAX(Table1[ABC Review]) = "ABC5"&& MAX(Table2 [XYZ3 Date]) > MAX(Table2 [ABC4 Date]), Table2 [XYZ3 Date],
MAX(Table1[ABC Review]) = "ABC5" && MAX(Table2 [XYZ3 Date]) < MAX(Table2 [ABC4 Date]), Table2 [ABC4 Date])
 
Thanks!
ryan_mayu
Super User
Super User

could you pls provide the sample data and exptected output?





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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