Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a table with bucket field and sales field ->
Bucket Sales
10-20 100
20-40 30
40-50 50
>50 120
I want to show sale of only >50 in a chart through set analysis. How can I do. Since writing > in set analysis , >50 as whole is not considered as a field value.
Please help.
Or else Provide sample app.
Try
=sum({<Bucket={'%50'}> } Sales)
or
=sum({<Bucket={$('>50')}> } Sales)
Script Generated field.
Thanks. But I want to get rid of creating new field.
Then in ur Bucket.. instead of ">50".. Use "Greater than 50"
May be share Excel data? I thought you created Bucket Field In script.
Then I guess, Sales is also coming aggregated from script. If so, you may try like:
=sum({<Sales={">50"}> } Sales)
Or,
=sum({<Bucket={"=Sum(Sales)>50"}> } Sales)
Hi ,
PFA .
Thanks
Raja