The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Is it possible to merge data from two different data sources within the same query, something like:
Source1 = Json.Document(Web.Contents("https://rsq-tm.com/cqweb/oslc/repo/MYschema/db/CCP/query/40853228?&rcm.contentType=application/json&...
Source2= Json.Document(Web.Contents("https://rsq-tm.com/cqweb/oslc/repo/MYschema/db/CCP/query/38703771?&rcm.contentType=application/json&...
#"Converted to Table" = Record.ToTable(??? - Source1 union Source2 - ???)
Value = #"Converted to Table"{2}[Value]
etc......
thank you
Solved! Go to Solution.
Sure, use a Merge or Append query, the M function is Table.Join.
Sure, use a Merge or Append query, the M function is Table.Join.
Table.Join is equivalent to SQL-JOINS (with all options as well!).
What you need here is Table.Combine({Source1, Source2}) (or Append if you do it via the UI). This is the equivalent to the SQL-UNION.
Imke Feldmann (The BIccountant)
If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!
How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries
User | Count |
---|---|
56 | |
54 | |
53 | |
47 | |
30 |
User | Count |
---|---|
175 | |
88 | |
69 | |
48 | |
47 |