Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jvmorren
New Member

Power Query - filter Table Cell using Outer Reference

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.

1 REPLY 1
LivioLanzo
Solution Sage
Solution Sage

@jvmorren

 

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!  

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.