Forum Discussion
Laveigo1
1 year agoNew Member
Power Query Editor Date Filter 2 quarters prior but not the prior quarter
Hi I am trying to filter my data to only show data from 2 quarters prior from today (e.g. April to June) but not the prior quarter's data (July to September). Is there a way to do so? At the mome...
Omid_Motamedise
Super User
1 year agoyou can add another condition and neglect value in the previous quarter by rewriting your formula as:
= Table.SelectRows(#"xxx", each Date.IsInPreviousNQuarters([date],2) and not Date.IsInPreviousNQuarters([date],1))