This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I need to filter a table cell using an outer reference
= Table.AddColumn(#"Added Custom1", "Custom.2", each Table.SelectRows([Custom.1],each ([ChildInvoiceDate]=Date.AddDays(#"Added Custom1"[InvoiceDate],-365))))
In other words, [Custom.1] is a Cell which contains a table. I need to filter "ChildInvoiceDate" using the parent InvoiceDate i.e. another column cell on the main table.
you can try by creating a simple function
fn = ( InvDate as date, T as table ) => Table.SelectRows( T, each [ChildInvoiceDate] = Date.AddDays( InvDate, -365 ) )
AddCol = Table.AddColumn(
#"Added Custom1",
"Custom.2",
each fn( [InvoiceDate], [Custom.1] )
)
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |