i tried to requested delivery date as a filter but i got the following error
i use that formula
=@NL("sum","Sales Line","Quantity","No.",$D12,"Requested Delivery Date",Options!C4,"Document Type","Order")
i tried to requested delivery date as a filter but i got the following error
i use that formula
=@NL("sum","Sales Line","Quantity","No.",$D12,"Requested Delivery Date",Options!C4,"Document Type","Order")
You are missing an absolute reference to your date filter, that is why it works on the first row and fails on all the subsequent rows, as the reference moves to C5, C6, C7...
=@NL("sum","Sales Line","Quantity","No.",$D12,"Requested Delivery Date",Options!$C$4,"Document Type","Order")