Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analysis

Hello

I have a problem

In my expression, I only want to count Besteknummer (=Tender number) where the

date in the field [Datum 7: Finale goedkeuring] is equal to the date in the field [Datum 1: Lancering Workflow]"

=Count(DISTINCT{<[Datum 7: Finale goedkeuring]={"=[Datum 1: Lancering Workflow]"}>}Besteknummer)

It doesn't work.

Can somebody help me ?

Thanks in adance

Marc

1 Solution

Accepted Solutions
jpapador
Partner - Specialist
Partner - Specialist

Try it with indirect set analysis:


Count(DISTINCT{<[Datum 7: Finale goedkeuring]=P([Datum 1: Lancering Workflow])>}Besteknummer)

The Datum 7 field with equal the possible values in the Datum 1 field.

View solution in original post

5 Replies
yduval75
Partner - Creator III
Partner - Creator III

=Count(DISTINCT{<[Datum 7: Finale goedkeuring]={"=$(=Only([Datum 1: Lancering Workflow]))"}>}Besteknummer)

steeramp
Partner - Creator II
Partner - Creator II

Try in this way


=Count(DISTINCT{<[Datum 7: Finale goedkeuring]={"$(=[Datum 1: Lancering Workflow])"}>}Besteknummer)


jpapador
Partner - Specialist
Partner - Specialist

Try it with indirect set analysis:


Count(DISTINCT{<[Datum 7: Finale goedkeuring]=P([Datum 1: Lancering Workflow])>}Besteknummer)

The Datum 7 field with equal the possible values in the Datum 1 field.

Not applicable
Author

Hi

Your solution

(Count(DISTINCT{<[Datum 7: Finale goedkeuring]=P([Datum 1: Lancering Workflow])>}Besteknummer) DISTINCT{<[Datum 7: Finale goedkeuring]=P([Datum 1: Lancering Workflow])>}Besteknummer)

Not applicable
Author

Hi

The solution by jpapador<http://community.qlik.com/people/jpapador?et=watches.email.thread> is

Count(DISTINCT{<[Datum 7: Finale goedkeuring]=P()>}Besteknummer)

Thank you

Marc