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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
simaotc
Frequent Visitor

New calculated colum,n if value is present in another column

Hello, dear community,

I have a table with the following format:

DescriptionCompanyExternal ID
FA 2023/48AAA 
FA 2023/48AAA 
adafafgagdfgaBBBFA2023/48
asfdfasgdagagdsgBBBFA2023/48

 

I would like to create a new column named InterCo, that if the company is BBB and the External ID is equal to a trim description then "AAA-BBB"

So far I tried:

 

InterCo = 
IF (
    'table'[Company] = "AAA" && 
    COUNTROWS (
        FILTER (
            'table',
            'table'[ExternalID] = SUBSTITUTE( EARLIER('table'[Description]), " ","")
        )
    ) > 0,
    "AAA-BBB",
    BLANK()
)

 

 

But without success. 

 

Any suggestion?

 

Thank you very much,

Simao

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

or Is this what you are looking for?

Screenshot_2.png

View solution in original post

3 REPLIES 3
Ahmedx
Super User
Super User

or Is this what you are looking for?

Screenshot_2.png

Thank you @Ahmedx. This solution worked perfectly

Ahmedx
Super User
Super User

Is this what you are looking for?

Screenshot_1.png

 

 

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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