March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi guys,
this one seems easy, but I'm not sure how to achieve it.
I have a dim table (Table2) with "SoftwarePackage" e.g.
Teams 1.1.2
Teams 2.2
Whiteboard 2.34
MS Project 2013
My main table regarding Software (Table1) uses "SoftwarePackageFullName" though, e.g.
Teams 1.0_DE 1.0
Teams 2.2_DE 1.0
Whiteboard 2.32_DE 1.3
MS Project 2013_DE 1.2
Now I'd like to create a custom column in table 2 that takes the string in SoftwarePackage, checks SoftwarePackageFullName and returns the full name.
Can someone point me in the right direction? Probably something with CONTAINSSTRING?
Solved! Go to Solution.
@PuddleRunna
Add the following New Column in Table 2 :
Full Name =
MAXX(
FILTER(
'Table--1',
CONTAINSSTRING('Table--1'[SoftwarePackageFullName] , 'Table--2'[SoftwarePackage])
),
'Table--1'[SoftwarePackageFullName]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Awesome, thanks for the fast help 🙂
@PuddleRunna
Add the following New Column in Table 2 :
Full Name =
MAXX(
FILTER(
'Table--1',
CONTAINSSTRING('Table--1'[SoftwarePackageFullName] , 'Table--2'[SoftwarePackage])
),
'Table--1'[SoftwarePackageFullName]
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
User | Count |
---|---|
111 | |
91 | |
90 | |
76 | |
45 |
User | Count |
---|---|
199 | |
163 | |
94 | |
80 | |
65 |