Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Mark,
First, make sure that STORE_OUT_DATE and STORE_IN_DATE are in the same format Date is (don't know if Date is a variable or a field).
Anyway, my guess is that you are comparing a date field (STORE_OUT_DATE for example) to a numeric value (as it's returned by Max(Date)). So your final expression should work as the following
Count({< [STORE_OUT_DATE] = {'>=$(=Min(Date))'}, [STORE_IN_DATE] = {'<$(=Max(Date))'} >} StockObjectNr)
Using set analysis your chart will likely perform better.
Hope that helps.
BI Consultant
Hello Mark,
First, make sure that STORE_OUT_DATE and STORE_IN_DATE are in the same format Date is (don't know if Date is a variable or a field).
Anyway, my guess is that you are comparing a date field (STORE_OUT_DATE for example) to a numeric value (as it's returned by Max(Date)). So your final expression should work as the following
Count({< [STORE_OUT_DATE] = {'>=$(=Min(Date))'}, [STORE_IN_DATE] = {'<$(=Max(Date))'} >} StockObjectNr)
Using set analysis your chart will likely perform better.
Hope that helps.
BI Consultant
Many thanks Miguel! This fixed my issue. A most helpful answer! Thanks!