Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I have the next 3 tables:
I would like to create a textbox which returns the nationality of the most common "Count_NP_ID" (based on rank) if the nationality is "EU".
Can you help me?
Thank you in advance!
Grtz,
Pascal
Try with (please adjust your field names)
FirstSortedValue({<[EU/NOT]={'EU'}>}Nationalteit,Rank)
Try with (please adjust your field names)
FirstSortedValue({<[EU/NOT]={'EU'}>}Nationalteit,Rank)
Hi Pascal,
You could try:
=ONLY(IF(AGGR(RANK(COUNT({$<Continent={"EU"}>}Continent)),Continent)=1, Country))
I created an example, so I'm not using your field names. Then it probably will be:
=ONLY(IF(AGGR(RANK(MAX({$<[EU/NOTEU_Empl])={"EU"}>}Count_NP_ID)),[EU/NOTEU_Empl])=1, Nationaliteit))
Thanks Clever!