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
Hi,
Not sure if title makes sense.
I have two tables
Table1 (Manually entered query): Only one column called 'names' with company names
Table2 (Calculated table with DAX expressions): Months, Years, Quarters and Concats of these combinations
I need to create a new table or add to Table1 where for each value in Table2.Year_Quarter, Table1.names duplicate
Example:
A - 2018 Q1
A - 2018 Q2
A - 2018 Q3
A - 2018 Q4
B - 2018 Q1
B - 2018 Q2
B - 2018 Q3
B - 2018 Q4
C - ETC ETC....
Thanks in advance
Solved! Go to Solution.
Hi @RB1,
I made one sample for your reference.
1. Create a calculated column.
Table = CROSSJOIN(COMPANY,'DATE')
2. Create the calculated column in the calculated column.
Column = 'Table'[name] & " " & CONCATENATE('Table'[Year],'Table'[Q])
Regards,
Frank
Hi @RB1,
I made one sample for your reference.
1. Create a calculated column.
Table = CROSSJOIN(COMPANY,'DATE')
2. Create the calculated column in the calculated column.
Column = 'Table'[name] & " " & CONCATENATE('Table'[Year],'Table'[Q])
Regards,
Frank
Hi @RB1,
Does that make sense? If so, kindly mark my answer as a solution to close the case.
Regards,
Frank
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.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
80 | |
78 | |
44 | |
39 |
User | Count |
---|---|
150 | |
116 | |
68 | |
64 | |
58 |