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

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

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
November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.