Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Suppose I have a table
product sales
a 30
b 30
c 10
d 5
need to write set analysis to get a and b value in a text box because it has maximum sales value.
May be this..
//Define a variable - eMaxSales
=Max(Sales)
//Text box expression
Concat({<Product={"=Sum(Sales) = $(eMaxSales)"}>}Product, Chr(10))
- Rahul
=Concat({<ID = {"=Rank(Sum(Sales))=1"}>} DISTINCT ID,', ')
Usethis
=Concat(DISTINCT {<Product={"=Rank(Sum(Sales))=1"}>} Product, ',')