Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I would like a graph to only show results if there are less that 91 days selected on the filter. The issue is that someone might select a month or a number of weeks. There is a field called "date" which would house data for the individual days.
Thank for your help.
Drew
Hi,
if the user is able to select in a different field, you should use:
getpossiblecount(date) as an alternative.
This function gives you for both cases, direct selected (green) in the date field and indirect selected (white) the correct number.
Best regards,
Christian
Hi
Try like this
=Sum({<Year=, Month=, week=, day= , datefield = {">=$(=Date(Max(datefield)-90),'DD/MM/YYYY') < $(=Date(Max(datefield),'DD/MM/YYYY')"}>}Sales)
Change the date format as per your date field.
Hola Drew, intentaste con la sección "Limites de Dimensión" en las propiedades del gráfico???
I'm not too sure what the sales field is meant to be? The chart I am using is a combo chart so has a few calculations in it. I thought that it would be possible using a "getselected" statement and could then apply a distinct count on the number of days associated to the selections being made?
Many thanks for your help.
I'm sorry I don't speak Spanish
Hi,
enable conditional checkbox for your expressio, then type:
getselectedcount(date) < 91
Best Regards
Stefan
Hi,
if the user is able to select in a different field, you should use:
getpossiblecount(date) as an alternative.
This function gives you for both cases, direct selected (green) in the date field and indirect selected (white) the correct number.
Best regards,
Christian
perfect thank you