How to stop Text Field reformatting dates?

868
11
Jump to solution
10-31-2023 05:45 AM
Labels (2)
Savannah2019
New Contributor III

So I've noticed that text fields in arcgis online are reformatting dates. How do I stop this? I made it a text field for a reason. I want "October 2023" to appear, not "10/1/2023". The only way I can get it to stop doing this is to put in extra text, but I don't want that.

Please see the photos:

What I've written:   Savannah2019_0-1698756214937.png

What appears in the pop-up:  Savannah2019_1-1698756253212.png

 

Help!

0 Kudos
11 Replies
EarlMedina
Esri Regular Contributor

If you can use Arcade, then you can do:

 Text($feature.DateField, 'MMM Y')

 

0 Kudos
Savannah2019
New Contributor III

Hi, it's not a date field- it's a text field. That's my problem. Using Text($.feature.TextField) does work and resets it to it's actual input value, but I don't want to have to create a text field and then an arcade function to have to say what I already wrote. If I could skip that, that'd be ideal.

0 Kudos