Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, i need to create a simple chart with y= month and as value i need to have the count(serial) only where the TAT_RANGE is ='IN' how can i do it?
the fields used are:
y=Month
x=count(serialL3) where TAT_RANGE='IN'/count(serialL3)
tat_Range is a dimension with result YES/NO
thanks massimiliano
Hi Massimiliano,
You are looking for a so called Set Expression.
If your exact field name is [serialL3], then your expression needs to look like this:
count({<TAT_RANGE={'IN'}>} serialL3)
I hope that helps!
Kind regards,
S.T.
Hi Massimiliano,
You are looking for a so called Set Expression.
If your exact field name is [serialL3], then your expression needs to look like this:
count({<TAT_RANGE={'IN'}>} serialL3)
I hope that helps!
Kind regards,
S.T.
Perfect, now is clear thank you