Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello,
I am currently using a dax formula in a calculated column to complete the following Count formula.
I am needing to move this to a Power Query custom column to save memory.
NewStep=Table.ReplaceValue(Table.NestedJoin(Summary,{"Customer","Mode"},OrderTable,{"Customer","Mode"},"Orders in Route",JoinKind.LeftOuter),each [DateTime],"",(x,y,z)=>if x=null then x else Table.RowCount(Table.SelectRows(x,each [Depart]<=y and [Arrive]>=y)),{"Orders in Route"})