{"id":305332,"date":"2018-08-22T13:44:34","date_gmt":"2018-08-22T20:44:34","guid":{"rendered":"http:\/\/www.esri.com\/arcgis-blog\/?post_type=blog&#038;p=305332"},"modified":"2018-08-22T13:44:34","modified_gmt":"2018-08-22T20:44:34","slug":"using-local-date-and-number-formatting-in-arcgis-online","status":"publish","type":"blog","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online","title":{"rendered":"Using local date and number formatting in ArcGIS Online"},"author":8332,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"_searchwp_excluded":""},"categories":[22941],"tags":[32551,212892,34651,212882,212872],"industry":[],"product":[36551],"class_list":["post-305332","blog","type-blog","status-publish","format-standard","hentry","category-mapping","tag-arcade","tag-date-format","tag-labels","tag-number-format","tag-popups","product-arcgis-online"],"acf":{"short_description":"Simple expressions that allow to set non-USA number and date formatting for labels and popups in ArcGIS Online","flexible_content":[{"acf_fc_layout":"content","content":"<p>Starting from the ArcGIS Online June 2018 release, it is possible to change the way numbers and dates are displayed. For instance, if you set English or Spanish in you profile, you will see a new setting \u201cNumber and Date format\u201d under your selected language. However, this setting is not reflected in how values are displayed in attribute tables, map labels, or temporal animations. I.e. everything based on attribute values and pop-ups.<\/p>\n<p>Here is a simple workaround on how to apply any date or number format you want using Arcade expressions. For this example, we have set English \u2013 Great Britain in the user profile, but you can follow similar workflow to set any other language formatting. This workaround even supports languages that are not supported currently by ArcGIS Online\u2019s user interface.<\/p>\n<p>To set the language settings: sign in, go to your profile, click &#8220;Edit Profile&#8221;, then set your &#8220;Language&#8221; and, if available, &#8220;Number and date format&#8221; (in 6.2 release for English and Spanish only). Then click Save.<\/p>\n<p>  <img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Capture1.jpg' alt='Set User language and number format' width='948' height='660'><\/p>\n<p>Now if you go to Content tab, you will see that formatting of Date Modified has changed, according to new \u2018Great Britain\u2019 settings.<\/p>\n<p>  <img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/3.jpg'  alt='UK date format in My Content' width='1464' height='396'><\/p>\n<p>Let\u2019s open the map and see if something has changed there.<\/p>\n<p>On Item details page date format also looks fine.<\/p>\n<p>  <img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Untitled1.png'  alt='UK date format in Item Details' width='1495' height='398'><\/p>\n<p>Now click Open to see this map in Map Viewer. There are some points (cities) and polygons (counties). They have attributes. Hovering a mouse on layer name allows to open their attribute tables with some data.  <\/p>\n<p>  <img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Untitled2.png'  alt='Open Attribute Table' width='1367' height-'529'><\/p>\n<p>For 4 counties layer we see a text field with county names, numeral fields with Population in 2010, Population density per square mile and Date when county was incorporated. Numeral attributes look good, with comma-separators for thousands and point-separators for decimals. But dates have month before day, it does not work for Great Britain date format! Also they have time component, that is currently unnecessary.<\/p>\n<p>Let\u2019s try to improve the situation. <\/p>\n<h2>Configure Popup window<\/h2>\n<p>The most easy way to do it is to configure popup. Hover the mouse on the layer name, click ellipsis and select Configure popup. On the Configure Pop-up panel click the link Configure attributes.<\/p>\n<p>  <img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Untitled3.png'  alt='Configure Popup' width='576' height='533'><\/p>\n<p>In the Configure Attributes window uncheck Show time and select date format that better fits your needs, for instance \u201921 Dec 1997\u2019:<\/p>\n<p>  <img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Untitled4.png' alt='Proper Date format in Configure Popup' width='1056' height='707'><\/p>\n<p>Click OK twice to close Configure Attributes and Configure Pop-up panels. Click some of your features and observe the new popup. Looks much better, isn\u2019t it?<\/p>\n<p>  <img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Capture2.jpg'  alt='Day Month Year in Popup' width='415' height='414'><\/p>\n<p>But what if the list of possible formats does not provide a format suitable for your language? For instance, the most commonly used date format in Japan and China is &#8220;year month day&#8221;, with the hieroglyphs meaning &#8220;year&#8221;, &#8220;month&#8221; and &#8220;day&#8221; inserted after the numerals. <\/p>\n<h4><em>Example:<\/em> 1893\u5e745\u67089\u65e5<\/h4>\n<p>This format is not available yet in the predefined list, but you can easily build any format you want with a simple Arcade expression!<\/p>\n<h2>How to build a date format in pop-up with Arcade expression<\/h2>\n<blockquote><p>Note: More detailed information about Arcade functions is provided in the help system.<\/p><\/blockquote>\n<p>Hover the mouse on the layer name, click ellipsis and select Configure popup. On the Configure Pop-up panel click the link Configure attributes.<\/p>\n<p>Under Attribute Expressions click ADD.<\/p>\n<p>  <img class=\"newsr-image_src\" src=' https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/AddExpression.jpg' alt='Add Expression' width='462' height='543'><\/p>\n<p>In the Custom dialog build your own or copy the following expression (Date field name in my example is \u2018Incorporated\u2019, you will use your own field name):<\/p>\n<p><code>Year($feature.Incorporated) + \"\u5e74\" + (Month($feature.Incorporated)+1) + \"\u6708\" + Day($feature.Incorporated) + \"\u65e5\" <\/code><\/p>\n<blockquote><p>Note: Months are stored in database from 0 for January to 11 for December, that is why you need to add &#8216;+1&#8217; to have proper Month number displayed.<\/p><\/blockquote>\n<p>Click Test and observe how your date format will be looking like.<\/p>\n<p>  <img class=\"newsr-image_src\" src=' https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Ja_Date_Format.jpg'  alt='Japanese date format' width='636' height='581'><\/p>\n<p>You can change this expression according to date format which is required for your language. For instance, if you want it in form \u201918-1-1850\u2019 type the following expression (don\u2019t forget to change the field name), where &#8220;-&#8221; is separator between Day, Month and Year. You can use &#8220;\/&#8221;, &#8220;. &#8221; or any other symbol instead:<\/p>\n<p>  <code>Day($feature.Incorporated) + \"-\" + (Month($feature.Incorporated)+1) + \"-\" + Year($feature.Incorporated)<\/code><\/p>\n<p>Click OK to close Custom dialog, then click Configure Attributes link and in the list of fields uncheck your date field and check Custom to display your formatted date instead of software-defined date format.<\/p>\n<p>Click OK twice to close Configure Attributes and Configure Pop-up panels.<\/p>\n<p>Click some of your features and observe the updated popup. If you open attribute table, you will see that date format is updated there as well.<\/p>\n<p>\t<img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Riverside_Popup.jpg' alt='Riverside county popup' width='903' height='467'><\/p>\n<p>Probably you don\u2019t like to see the word \u2018Custom\u2019 instead of the actual field name or alias, let\u2019s build more user-friendly popup.<\/p>\n<h2>Creating custom attribute display in pop-up<\/h2>\n<p>Open Configure Pop-up panel. For Pop-up Title choose {NAME} field. It will display the county name in title. Edit Custom expression (click a small gear icon next to it) and change it to the following:<\/p>\n<p><code>$feature.POPULATION +\" total population; i.e. \"+$feature[\"POP_SQMI\"]+' per sq.mi. '<br \/>\n+'Incorporation date: ' + Day($feature.Incorporated) + \"-\" + (Month($feature.Incorporated)+1)<br \/>\n+ \"-\" + Year($feature.Incorporated)<\/code><\/p>\n<p>  <img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Verbal_Popup.jpg' alt='Descriptive custom expression' width='638' height='597'><\/p>\n<p>Click OK to close Custom window.<\/p>\n<p>In the drop-down Pop-up Title select {NAME} field if you want to see the actual county name instead of the \u2018County information\u2019 text.<\/p>\n<p>For Pop-up Contents select A description from one field and choose your Custom {expression\u2026} to be used.<\/p>\n<p>\t<img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Desc_from1field.jpg' alt='A description from one custom field' width='465' height='323'><\/p>\n<p>Click OK to close the Configure Pop-up panel. Click any county to observe it\u2019s popup.<\/p>\n<p>\t<img class=\"newsr-image_src\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Capture4.jpg'  alt='Configured text Popup' width='412' height='201'><\/p>\n<blockquote><p>Note: <\/p>\n<p>In this demo I simplified the popup text to show you only formatting possibilities for Number and Date fields. More detailed information about custom attribute displays in pop-ups can be found in our blog:<br \/>\n<a title=\"View website\" href=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/uncategorized\/crafting-custom-attribute-displays-in-pop-ups\" target=\"_blank\" rel=\"noopener\">Crafting custom attribute displays in pop-ups<\/a>\n<\/p>\n<\/blockquote>\n<p>Looks good, but the value for Population lost its formatting. It happened because Arcade is using \u2018pure\u2019 value, as it is stored in the database, no language-specific formatting.<\/p>\n<h2>Apply locale-specific Number format<\/h2>\n<p>Let\u2019s take another scenario. For instance, we have set Spanish language and Spain format in user Profile (or any other language which uses comma-separators for decimals). To simplify the code, we want to display only following field values: Population and Average household size for each city.<br \/>\nTo do it, in Cities layer just uncheck all other fields in Pop-up settings:<\/p>\n<p>\t<img class=\"newsr-image_src\" src=' https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Capture5.jpg'  alt='Uncheck layers' width='704' height='465'><\/p>\n<p>Now we see comma-separators for decimals and point-separators for thousands, both popup and attribute field values are looking good:<\/p>\n<p>  <img class=\"newsr-image_src\" src=' https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Population_and_HH.jpg'  alt='Population and Household size in popup' width='1175' height='469'><\/p>\n<p>Now click Manage labels and select Custom (expression) for Text:<\/p>\n<p><img class=\"newsr-image_src\" src=' https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/CustomExpr.jpg'  alt='Custom Expression for labels' width='706' height='688'><\/p>\n<p>Click a pencil button at the right side and type the following expression:<\/p>\n<p><code>$feature[\"NAME\"] + \": \" + $feature.POPULATION + \" total population; \" + $feature[\"AVE_HH_SZ\"] + \" average household size.\"<\/code><\/p>\n<p>Click Test:<\/p>\n<p><img class=\"newsr-image_src\" src=' https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/BrokenNumbersInString.jpg'  alt='Numbers in string' width='716' height='463'><\/p>\n<p>Oops, number format does not look as expected, the same as it was for counties in previous step.<\/p>\n<p>The only thing that can be done here is separating field values into parts \u2018before the separator\u2019 and \u2018after the separator\u2019, convert into text and concatenate them back, inserting the proper separator sign between them.<\/p>\n<p>To simplify the example, I will format the value for only one field with Average household size values.<\/p>\n<p><p>Please find the sample code for decimal separators below. Take it as is, just change the field name and desired separator.<\/p>\n<section>\n<code>var statictext = ($feature.AVE_HH_SZ)<\/code><br \/>\n<code>var splitarray = Split(statictext, '.')<\/code><br \/>\n<code>var splitleft = splitarray[0]<\/code><br \/>\n<code>var countleft = Count(splitleft)<\/code><br \/>\n<code>var revstring = \"\"<\/code><br \/>\n<code>var commastring = \"\"<\/code><br \/>\n<code>var finalstring = \"\"<\/code><br \/>\n<code>for(var i=countleft-1; i>=0; i--) { <\/code><br \/>\n<code>revstring = text(revstring) + text(splitleft[i])<\/code><br \/>\n<code>}<\/code><br \/>\n<code>\/\/ loop through the revesed string and add the commas<\/code><br \/>\n<code>for(var k = 0; k < countleft; k++) { <\/code><br \/>\n<code>if ((k+1) % 3 == 0) {<\/code><br \/>\n<code>\/\/if the position is a multiple of 3 then we add a comma<\/code><br \/>\n<code>\/\/and account for whether it\u2019s the last row<\/code><br \/>\n<code>if (k < countleft){<\/code><br \/>\n<code>commastring = \" \" + text(revstring[k]) + text(commastring)<\/code><br \/>\n<code>} else {<\/code><br \/>\n<code>commastring = text(revstring[k]) + text(commastring)<\/code><br \/>\n<code>}<\/code><br \/>\n<code>} else {<\/code><br \/>\n<code>commastring = text(revstring[k]) + text(commastring)<\/code><br \/>\n<code>}<\/code><br \/>\n<code>}<\/code><br \/>\n<code>if (Count(splitarray) == 2)<\/code><br \/>\n<code>\/\/ here you can change the separator<\/code><br \/>\n<code>    finalstring = commastring + \",\" + splitarray[1]<\/code><br \/>\n<code>else<\/code><br \/>\n    <code>finalstring = commastring<\/code><br \/>\n<code>return finalstring<\/code><br \/>\n<\/section>\n<section>\n<p>What if you want to have a verbal string, as in previous example? Just change the last string: <\/p>\n<p><code>Return \"Average household size: \" + finalstring + \" persons.\"<\/code><br \/>\n<br \/>\n  <img class=\"newsr-image_src\" src=' https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/LabelArcade.jpg' alt='Configure Popup1' width='3976' height='164'><\/p>\n<p>Similar Arcade expressions may be used in ArcGIS Pro and other parts of esri software where customized number and date formatting is needed.<\/p>\n"}],"authors":[{"ID":8332,"user_firstname":"Olga","user_lastname":"Serebryannaya","nickname":"OSerebryannaya","user_nicename":"oserebryannaya","display_name":"Olga Serebryannaya","user_email":"OSerebryannaya@esri.com","user_url":"","user_registered":"2018-08-21 20:29:03","user_description":"","user_avatar":"<img data-del=\"avatar\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Olga2018.jpg' class='avatar pp-user-avatar avatar-96 photo ' height='96' width='96'\/>"}],"related_articles":"","card_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/green_yellow.jpg","wide_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/green_yellow1.jpg"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v25.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Using local date and number formatting in ArcGIS Online<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using local date and number formatting in ArcGIS Online\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online\" \/>\n<meta property=\"og:site_name\" content=\"ArcGIS Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/esrigis\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@ESRI\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online\"},\"author\":{\"name\":\"Olga Serebryannaya\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/8aa9680f55025d77a68ea7f382f19354\"},\"headline\":\"Using local date and number formatting in ArcGIS Online\",\"datePublished\":\"2018-08-22T20:44:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online\"},\"wordCount\":9,\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"keywords\":[\"arcade\",\"date format\",\"labels\",\"number format\",\"popups\"],\"articleSection\":[\"Mapping\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online\",\"name\":\"Using local date and number formatting in ArcGIS Online\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\"},\"datePublished\":\"2018-08-22T20:44:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.esri.com\/arcgis-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using local date and number formatting in ArcGIS Online\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"name\":\"ArcGIS Blog\",\"description\":\"Get insider info from Esri product teams\",\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\",\"name\":\"Esri\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"contentUrl\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"width\":400,\"height\":400,\"caption\":\"Esri\"},\"image\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/esrigis\/\",\"https:\/\/x.com\/ESRI\",\"https:\/\/www.linkedin.com\/company\/5311\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/8aa9680f55025d77a68ea7f382f19354\",\"name\":\"Olga Serebryannaya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Olga2018.jpg\",\"contentUrl\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Olga2018.jpg\",\"caption\":\"Olga Serebryannaya\"},\"url\":\"\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Using local date and number formatting in ArcGIS Online","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online","og_locale":"en_US","og_type":"article","og_title":"Using local date and number formatting in ArcGIS Online","og_url":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online","og_site_name":"ArcGIS Blog","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","twitter_card":"summary_large_image","twitter_site":"@ESRI","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online#article","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online"},"author":{"name":"Olga Serebryannaya","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/8aa9680f55025d77a68ea7f382f19354"},"headline":"Using local date and number formatting in ArcGIS Online","datePublished":"2018-08-22T20:44:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online"},"wordCount":9,"publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"keywords":["arcade","date format","labels","number format","popups"],"articleSection":["Mapping"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online","url":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online","name":"Using local date and number formatting in ArcGIS Online","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#website"},"datePublished":"2018-08-22T20:44:34+00:00","breadcrumb":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-online\/mapping\/using-local-date-and-number-formatting-in-arcgis-online#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/arcgis-blog\/"},{"@type":"ListItem","position":2,"name":"Using local date and number formatting in ArcGIS Online"}]},{"@type":"WebSite","@id":"https:\/\/www.esri.com\/arcgis-blog\/#website","url":"https:\/\/www.esri.com\/arcgis-blog\/","name":"ArcGIS Blog","description":"Get insider info from Esri product teams","publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization","name":"Esri","url":"https:\/\/www.esri.com\/arcgis-blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","contentUrl":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","width":400,"height":400,"caption":"Esri"},"image":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/esrigis\/","https:\/\/x.com\/ESRI","https:\/\/www.linkedin.com\/company\/5311\/"]},{"@type":"Person","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/8aa9680f55025d77a68ea7f382f19354","name":"Olga Serebryannaya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/","url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Olga2018.jpg","contentUrl":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/Olga2018.jpg","caption":"Olga Serebryannaya"},"url":""}]}},"text_date":"August 22, 2018","author_name":"Olga Serebryannaya","author_page":false,"custom_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/08\/green_yellow1.jpg","primary_product":"ArcGIS Online","tag_data":[{"term_id":32551,"name":"arcade","slug":"arcade","term_group":0,"term_taxonomy_id":32551,"taxonomy":"post_tag","description":"","parent":0,"count":113,"filter":"raw"},{"term_id":212892,"name":"date format","slug":"date-format","term_group":0,"term_taxonomy_id":212892,"taxonomy":"post_tag","description":"","parent":0,"count":1,"filter":"raw"},{"term_id":34651,"name":"labels","slug":"labels","term_group":0,"term_taxonomy_id":34651,"taxonomy":"post_tag","description":"","parent":0,"count":21,"filter":"raw"},{"term_id":212882,"name":"number format","slug":"number-format","term_group":0,"term_taxonomy_id":212882,"taxonomy":"post_tag","description":"","parent":0,"count":2,"filter":"raw"},{"term_id":212872,"name":"popups","slug":"popups","term_group":0,"term_taxonomy_id":212872,"taxonomy":"post_tag","description":"","parent":0,"count":12,"filter":"raw"}],"category_data":[{"term_id":22941,"name":"Mapping","slug":"mapping","term_group":0,"term_taxonomy_id":22941,"taxonomy":"category","description":"","parent":0,"count":2698,"filter":"raw"}],"product_data":[{"term_id":36551,"name":"ArcGIS Online","slug":"arcgis-online","term_group":0,"term_taxonomy_id":36551,"taxonomy":"product","description":"","parent":0,"count":2433,"filter":"raw"}],"primary_product_link":"https:\/\/www.esri.com\/arcgis-blog\/?s=#&products=arcgis-online","_links":{"self":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/305332","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog"}],"about":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/types\/blog"}],"author":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/users\/8332"}],"replies":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/comments?post=305332"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/305332\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/media?parent=305332"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/categories?post=305332"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/tags?post=305332"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/industry?post=305332"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/product?post=305332"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}