This question is from 2013, so you probably don't still need help, but it's the first to come up on Google when you search for this so I figure it will help someone.
You can show percentage in an indicator by setting your numerator - in this case inoperable inspections - to your value field, and your denominator - in this case all inspections - to your reference field.
Then in your text boxes, you can display the percent by clicking "Fields: {}" and choosing 100 * Value / Reference - {percentage}. There's more information on this at Indicator—Operations Dashboard for ArcGIS | ArcGIS, including an explanation of all the other calculations that you can use within an indicator. Your percentages may show up with a lot of decimals, and you can format those by following this help: Format numbers—Operations Dashboard for ArcGIS | ArcGIS.
I hope this can help someone else who was looking for this functionality!
Andrew Hargreaves Tif Pun #ops dashboard #operationsdashboard #percent #indicator widget
Hi Philip Queen,
Do you know if there is a way to add the value and reference together?
i.e. {value + reference}
I am trying this, but it doesn't appear to be an option.
Thanks
Darryl
Hey Darryl,
You're right, it isn't an option. I tried some likely candidates like {sum} to see if there was something hidden, but with no luck. I don't even see adding calculations as an "Idea" - but I think it's a good candidate for one, as this seems like a real limitation.
Sorry I couldn't be of more help,
Philip
Thanks. Perhaps I will add it as an ArcGIS Idea.
Old Post, I know. Came across it as I was searching for a way to add the value and reference together. Since you can do difference you'd think sum would be also an option. Only way I've figured it out was to add a new field that did the calculation and then use that field in my dashboard 99 indicator.
🌟 Welcome to our manga site, where magic comes to life and incredible stories await you! 📚 Immerse yourself in a mesmerizing universe of manga, filled with thrilling adventures, heartwarming tales, and breathtaking artistry that will leave you spellbound. 🎉 Whether you're a seasoned manga lover or a curious newcomer, our carefully curated collection has something for everyone. 🌏 Explore diverse genres, from action-packed shonen to enchanting shojo, and unravel the mysteries of fantasy, romance, and more. Come to our site and read the manga comic which I have published for you. 🖌️ Lose yourself in the vividly drawn characters and their emotional journeys, as you become part of their extraordinary worlds. 🔎 Join our vibrant community of manga enthusiasts, connect with like-minded fans, and engage in exciting discussions. 🌐 Don't miss this chance to unleash your imagination and experience the wonder of manga! Visit our manga site now and let the adventure begin! 🎊:milky_way::performing_arts:
It seems to be a combination of terms related to Instagram (Insta), a Russian artist (Samka), and a video editing app (CapCut). Without more specific information Friendship Day CapCut Template, it's challenging to provide guidance or context regarding this particular template.
If you have any specific questions or need assistance with Instagram, video editing, or any related topics, please feel free to ask, and I'll be glad to help!
Hello All,
I found this post and figured it out!
ESRI should really update the user guides on this to specifically mention that you must turn on a Reference and select Statistics for it to show up in the Fields {} of the Indicator. Pictures would be helpful as this feature is all hidden and I will be training people at work for decades on this lol.
In 2021 there are two options here that I know of:
1) Ensure that a Reference for the indicator has been set
Then the options to do the calculations show up
https://doc.arcgis.com/en/dashboards/get-started/indicator.htm
2) Use the Dashboards Beta and Arcade to do this manually or follow the instructions above as the beta too supports the original method.
Here is some sample code:
var percentCount = Floor($datapoint.count / $reference.count * 100)
var yardCount = $datapoint.count
return {
//textColor:'',
//backgroundColor:'',
topText: 'Caledon',
topTextColor: '',
topTextOutlineColor: '',
topTextMaxSize: 'large',
middleText: concatenate(yardCount, ' or ', percentCount, '%'),
middleTextColor: '',
middleTextOutlineColor: '',
middleTextMaxSize: 'medium',
//bottomText: '',
//bottomTextColor: '',
//bottomTextOutlineColor: '',
//bottomTextMaxSize: 'medium',
//iconName:'',
//iconAlign:'left',
//iconColor:'',
//iconOutlineColor:'',
//noValue:false,
//attributes: {
// attribute1: '',
// attribute2: ''
// }
}