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

Gauge Chart

Hi

I'm trying to make a gauge chart. I have a table with some data of operations. Then there is a column that can be "approved" or "not approved". I want to make a gauge chart of % of approved operations, but I can't find a way to do it.

Thanks

1 Solution

Accepted Solutions
mgranillo
Specialist
Specialist

try

count({<Status={'A'}>}Operation)/

count(Operation)

View solution in original post

4 Replies
mgranillo
Specialist
Specialist

Ivan,

You should be able to simply add your calculation under measures.  something like count({<approval={'approved'}>}operations)/count(operations)

Can you provide a specific example?

Mike

Not applicable
Author

Certainly

The table, named ACUM, is like this:

OperationDescriptionStatus
1BuyA
2BuyO
3SellA

I want to make a gauge with % of As (eventually, I would like to also filter them by Buy/Sell).

mgranillo
Specialist
Specialist

try

count({<Status={'A'}>}Operation)/

count(Operation)

Not applicable
Author

Thanks! It worked