Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Time | Scenario | Revenue Dollars | Volume |
---|---|---|---|
Nov 2011 | Actuals | $235,369 | 12354 |
Nov 2011 | Budget | $215,027 | 13354 |
Dec 2011 | Actuals | $7,567,546 | 17754 |
Dec 2011 | Budget | $7,543,456 | 33354 |
Jan 2012 | Actuals | $4,234,455 | 15454 |
Jan 2012 | Budget | $4,543,456 | 78354 |
sum({<Scenario={Budget}>}[Revenue Dollars]) - sum({<Scenario={Actuals}>}[Revenue Dollars])
With this expression it gives me some garbage value.
Please help me.
Thanks,
Shikha
You need quotes around the field values:
sum({<Scenario={'Budget'}>}[Revenue Dollars]) - sum({<Scenario={'Actuals'}>}[Revenue Dollars])
HIC
You need quotes around the field values:
sum({<Scenario={'Budget'}>}[Revenue Dollars]) - sum({<Scenario={'Actuals'}>}[Revenue Dollars])
HIC
Thanks a lot for the reply. It did work, but what if I want to show 3 segments in the gauge char(green, yellow, red) with a min and max value for each segment. I don't see an option to perform this in the properties.
For example in the table above I want to perform the below presentation in the gauge chart.
sum({<Scenario={'Budget'}>}[Revenue Dollars]) - sum({<Scenario={'Actuals'}>}[Revenue Dollars])is positive then pointgreen
sum({<Scenario={'Budget'}>}[Revenue Dollars]) - sum({<Scenario={'Actuals'}>}[Revenue Dollars]) is .05*sum({<Scenario={'Actuals'}>}[Revenue Dollars]) then point yellow
sum({<Scenario={'Budget'}>}[Revenue Dollars]) - sum({<Scenario={'Actuals'}>}[Revenue Dollars]) id negative then point red
Thanks,
Shikha