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
samnaw
Resolver I
Resolver I

Switch Max (tooltip) question

Hello:

 

I have made a tooltip and the dax code it works perfectly. Below is my code: 

 

2021_Event_Type = 
Switch(
Max('Table1'[WEEK]),
"1.6 W42", "Event1",
"1.7 W43", "Event2",
"2.8 W44", "Event3",
"2.8 W01", " ",
blank()
)

 

 

But now I want to add a condition week and FY = 2021

below is an incorrect code, but I want to do something like this:

 

2021_Event_Type = 
Switch(
Max('Table1'[WEEK] & 'Table1'[FY] = 2021),
"1.6 W42",  "Event1",
"1.7 W43",  "Event2",
"2.8 W44",  "Event3",
"2.8 W01",  " ",
blank()
)

 

How can I do this?

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@samnaw , Try like

 


2021_Event_Type =
Switch(
Max('Table1'[WEEK]) && MAX('Table1'[FY]) = 2021,
"1.6 W42", "Event1",
"1.7 W43", "Event2",
"2.8 W44", "Event3",
"2.8 W01", " ",
blank()
)

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @samnaw , could you clarify your expected result more clearly?

 

In your Switch function, the Max('Table1'[WEEK] & 'Table1'[FY] = 2021) is used to compare with the values of "1.6 W42"/"1.7 W43"/... , but obviously they cannot be compared. What's the logic of the condition you want to realize? Will '2021' be involved in the values to be compared?

 

Best Regards,
Community Support Team _ Jing Zhang

amitchandak
Super User
Super User

@samnaw , Try like

 


2021_Event_Type =
Switch(
Max('Table1'[WEEK]) && MAX('Table1'[FY]) = 2021,
"1.6 W42", "Event1",
"1.7 W43", "Event2",
"2.8 W44", "Event3",
"2.8 W01", " ",
blank()
)

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.