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 August 31st. Request your voucher.

Reply
adamsumm
Frequent Visitor

IF and Search Function for finding if a specific value exists in two columns

Hello,

 

Very new to Power Bi so I am still trying to figure out how to complete some of the basics.  I am attempting to create a new comlumn that will print either "Personal" or "Company" when searching the Description column and the Transfered_to.cmdb_ci.  I want the function to print Personal if it finds the keyword personal in either column.  

 

The function below is what I am using but it appears to not be working.  It will only Print Personal if it finds the keyword in teh Description column but not in the other.  

 

personal = IF(
IFERROR(
SEARCH("personal", new_call[description]) || search("personal", new_call[transferred_to.cmdb_ci])
, -1) > -1,
"Personal",
"Company"
)

 

biQuestion1.png

 

 

 

Thank you very much!

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @adamsumm,

 

Please try this formula:

personal =
IF (
    SEARCH ( "personal", new_call[description],, 0 ) > 0
        || SEARCH ( "personal", new_call[Transfered_to.cmdb_ci],, 0 ) > 0,
    "Personal",
    "Company"
)

Regards,
Yuliana Gu

Community Support Team _ Yuliana Gu
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

5 REPLIES 5
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @adamsumm,

 

Please try this formula:

personal =
IF (
    SEARCH ( "personal", new_call[description],, 0 ) > 0
        || SEARCH ( "personal", new_call[Transfered_to.cmdb_ci],, 0 ) > 0,
    "Personal",
    "Company"
)

Regards,
Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Perfect! thank you very much for helping out with this.  I am confused about this section of the code "

,, 0 ) > 0"

 I would love to learn so If your able to explain that would be great @v-yulgu-msft

 

Thank you!!!!

Hi @adamsumm,

 

Here is a document introducing the usage of SEARCH function for your reference: SEARCH Function (DAX). It explains each part inside this function.

 

Regards,
Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you! that site will help me out a lot!  

Hi @adamsumm,

 

Would you please kindly mark the corresponding reply as an answer so that it can benefit more community members?

 

Regards,
Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.