Discussion board where members can learn more about Qlik Sense App Development and Usage.
Hey guys
How can i do the following?
count({<Date_year={$(=Max(Data_Ano))},(Marca={'ZZ'} or Marca={'HN'})>} Tipo_publicacao)
Is is possible to use the "OR" operator, or do I have to separate them?
Thanks in advance,
Miguel Cunha
But why not just this
Count({<Date_year={$(=Max(Data_Ano))}, Marca={'ZZ', 'HN'}>} Tipo_publicacao)
May be like this
Count({<Date_year={$(=Max(Data_Ano))},(Marca={'ZZ'}>+<Marca={'HN'})>} Tipo_publicacao)
But why not just this
Count({<Date_year={$(=Max(Data_Ano))}, Marca={'ZZ', 'HN'}>} Tipo_publicacao)
That's exactly what I needed! Thank you very much