Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying something like
=(Count( DISTINCT {<A={"SD"}>}{<B={"TD"}>} A&'|'&B))
A and B are in different tables joined by LEFT JOIN
And I noticed that only A=SD condition is applying but B=TD is NOT.
Is there a way to implement both conditions together with 'OR' logical operator??
Try this
=Count( {<A={"SD"}>+<B={"TD"}>} DISTINCT A&'|'&B )
Nope, Doesn't work 😕
Represent the current selection:
=Count( {<A={"SD"}>+<B={"TD"}>} DISTINCT A&'|'&B )
Represent the full set of data associated :
=Count( {1<A={"SD"}>+1<B={"TD"}>} DISTINCT A&'|'&B )
Can I use it like this,
=concat({<A={"SD"}>+<B={"TD"}>} DISTINCT A) &'|'& concat(B)
and now count it somehow.
I am not familiar with how to count concatenated string.
But this should work right?
PS: Please correct the syntax if req
Concat function returns the aggregated string concatenation of all values of the expression iterated over a number of records as defined by a group by clause.
Could you upload a sample that expected result?