Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello!
I am needing to combine two fields, each from different tables in my dataset. Example of the data is
Table1
productkey productseries
12345 XYZ23
Table2
productkey productcode
12345 001-002-003
What I need is a column in Table1 with productseries &"-"& productcode (XYZ23-001-002-003)
I've tried a variety of different functions, but I'm not having any success. My latest attempt is below.
NewField= CONCATENATEX(Table1,CROSSFILTER(Table1[productkey],Table2[productkey],Both),Table1[productseries] &"-"& Table2[productcode])
Thank you
@QueenTink Do you have a relationship between your two tables?
Is it Many to one?
@QueenTink How about:
Column = [productseries] & "-" & RELATED('Table2'[productcode])
@Greg_Deckler I get an error saying it cannot find name. The only fields that seem to be available for this are other calculated fields in the table.
@QueenTink Are you trying to create a column or a measure? The post said column. If you need a measure it will be like:
Column = MAX([productseries]) & "-" & MAX('Table2'[productcode])
This assumes an appropriate relationship between the tables.
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
11 | |
9 | |
6 |