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
vashu-123
Frequent Visitor

Need help with DAX

Hello All I am trying to create the below dax which would replace few texts with my desired output as below:

vashu123_0-1670232298235.png

I am facing an error like above. Is there any way we could solve this or any other workaround?Any help would be much appreciated. Thanks in Advance!

3 REPLIES 3
v-yadongf-msft
Community Support
Community Support

Hi @vashu-123 ,

 

I'm so glad to hear that your dax problem has been solved. 

 

In order to help you solve problems more efficiently, if you have problems about excle formula, you can reopen a thread or ask questions on excel community.

 

Thanks for your understanding.

 

Best regards,

Yadong Fang

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

amitchandak
Super User
Super User

@vashu-123 , Try like

 

Column = SWITCH( True() ,
CONTAINSSTRING(inbound_inventory_test,inbound_inventory_test[ETS_Mgmt_Follow_up_Comments], "ITW"),"Inbound",
CONTAINSSTRING(inbound_inventory_test,inbound_inventory_test[ETS_Mgmt_Follow_up_Comments], "DTW"), "Delivered to WH",
CONTAINSSTRING(inbound_inventory_test,inbound_inventory_test[PO_Confirmation_Date], " "), "not confirmed",
CONTAINSSTRING(inbound_inventory_test,inbound_inventory_test[manufacturer_name], "zones"), "Zones Service",
(inbound_inventory_test[PO_Confirmation_Date])>TODAY()-3, "New PO",
(inbound_inventory_test[PO_Confirmation_Date])<TODAY()-30,"30+days Open",
"Inbound")

Hi @amitchandak there was a tiny modification below for the dax but it worked out.

Column2 = SWITCH( True() ,
CONTAINSSTRING(inbound_inventory_test[ETS_Mgmt_Follow_up_Comments],"ITW"),"Inbound",
CONTAINSSTRING(inbound_inventory_test[ETS_Mgmt_Follow_up_Comments], "DTW"), "Delivered to WH",
contains(inbound_inventory_test,inbound_inventory_test[PO_Confirmation_Date]," "), "not confirmed",
CONTAINSSTRING(inbound_inventory_test[manufacturer_name], "zones"), "Zones Service",
value(inbound_inventory_test[PO_Confirmation_Date])>TODAY()-3, "New PO",
value(inbound_inventory_test[PO_Confirmation_Date])<TODAY()-30,"30+days Open",
"Inbound")

 

 

I also have one doubt I am generating this using excel formula. In the excel formula they are using OR function on the 3rd line of the dax of you have provided. Below I am pasting the excel formula how can we achieve or function just like the excel formula?

=IF(A7="","",
IF(SUMPRODUCT(--ISNUMBER(SEARCH({"ITW"},L7)))>0,"inbound",
IF(SUMPRODUCT(--ISNUMBER(SEARCH({"DTW"},L7)))>0,"delivered to WH",
IF(N7="(blank)","not confirmed",
IF(OR(T7=1,T7=2),
IF(SUMPRODUCT(--ISNUMBER(SEARCH({"zones"},K7)))>0,"Zones Service",
IF(N7>TODAY()-3,"new PO",
IF(N7<TODAY()-30,"30+days open","inbound"))),
"inbound")))))

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.