Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Count({<[Delivery Week]={Week(Today)>} [Customer Name])... it throws error...pls coorrect it
Hi,
Then you should use like this
Count({<[Delivery Week]={"$(='week ' & Week(Today()))"}>} [Customer Name])
Hope it helps
Celambarasan
Probably you are missing one'}', try it as : Count({<[Delivery Week]={Week(Today)}>} [Customer Name])
Regards, tresesco
Hi,
Try with this expression
Count({<[Delivery Week]={$(=Week(Today))}>} [Customer Name])
Celambarasan
your expression also error... i think week(today()) is inbetwwen the quotes ..but it showing error
no i want general where condition not current selection
Hi,
You mean independent of other field selection?like this?
Count({1<[Delivery Week]={$(=Week(Today()))}>} DISTINCT [Customer Name])
Celambarasan
So you mean tried this also,
Count({<[Delivery Week]={"=Week(Today())"}>} [Customer Name])
Regards, tresesco
Hi,
Try using the below expressions
Count({<[Delivery Week]={$(=Week(Today()))}>} [Customer Name])
OR
Count({<[Delivery Week]={'=$(=Week(Today()))'}>} [Customer Name])
OR
Count({<DateField={'>=$(=WeekStart(Today()))<=$(=WeekEnd(Today()))'}>} [Customer Name])
Regards,
Jagan.
how to use without current selection($)
Hi,
Here $(=) its not a current selection its to telling the qlikview to evaluate the expression inside it.It means dollar expansion.
Count({$<fields>} FieldName) (This will be used for current selection)
Count({1<fields>} FieldName) (This will be used to ignore the current selections)
Hope it helps
Celambarasan