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.
I need to be able to reference a subset of another table/query (inputTable) in my current table/query (currentTable).
I have tried:
= Table.AddColumn(#"prev step", "SubsetTable", each Table.SelectRows(inputTable, each Record.Field(_, colA) = [A] and Record.Field(_, colB)=[B]))
I want the rows from the inputTable where colA (and colB) match the values in column A (and B) in the current table in the current row (/for each row)
Hope this makes sense
Solved! Go to Solution.
Merge?
Of course 🙈
thnx