The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have two tables
1) Table 1
Column name: (Strategy), (Repair Scheme), (Engine Type), (Package), and otehr columns
2)Table 2:
Column name: (Strategy), (FRS), (EngType), (Package Code), and otehr columns
The 4 columns listed for both table have values that corresponds to each other.
In table 2, I have this column called T1Pack.
I wish to create a new column in Table 1 such that it have this new column T1Pack
How can I go about doing this. What is the DAX expression for this?
Help is appreciated.
Solved! Go to Solution.
@ephramz , Try a new column like this in table 2
maxx(filter(Table2 , Table1[Strategy] = Table2[Strategy] && Table1[Engine Type] = Table2[EngType] && Table1[Package] = Table2[Package Code] ),Table2[T1Pack])
add or remove joins in filter
@ephramz , Try a new column like this in table 2
maxx(filter(Table2 , Table1[Strategy] = Table2[Strategy] && Table1[Engine Type] = Table2[EngType] && Table1[Package] = Table2[Package Code] ),Table2[T1Pack])
add or remove joins in filter
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
107 | |
82 | |
77 | |
46 | |
39 |
User | Count |
---|---|
135 | |
109 | |
70 | |
64 | |
55 |