Copying/replacing first letter in column of attribute table in ArcMap with field calculator and Python Parser?Rounding column in attribute table using ArcGIS Field Calculator?Replacing attribute table entries using Python scriptFinding and copying text with Field Calculator in ArcGIS for Desktop?ArcGIS field calculator Python generate random point names from attribute tableReplacing multiple values in attribute table field using ArcGIS field calculator and python parser?Replacing values with non-English characters in attribute table field using ArcGIS field calculator and python parser?Make ArcMap label using the first letter from each word in an attributeReclassifying Vector Field using python parser in field calculatorSplitting second word of attribute using Python Parser of ArcMap Field Calculator?Extracting numbers from string field but omit some unnecessary cells using Python Parser of ArcMap Field Calculator?

How can saying a song's name be a copyright violation?

Doing something right before you need it - expression for this?

How much of data wrangling is a data scientist's job?

Can one be a co-translator of a book, if he does not know the language that the book is translated into?

A reference to a well-known characterization of scattered compact spaces

Can a virus destroy the BIOS of a modern computer?

1960's book about a plague that kills all white people

Why is Collection not simply treated as Collection<?>

Alternative to sending password over mail?

What is going on with Captain Marvel's blood colour?

How to take photos in burst mode, without vibration?

Stopping power of mountain vs road bike

Does casting Light, or a similar spell, have any effect when the caster is swallowed by a monster?

Why is consensus so controversial in Britain?

Is "remove commented out code" correct English?

Why can't we play rap on piano?

Why doesn't H₄O²⁺ exist?

Is it legal for company to use my work email to pretend I still work there?

Etiquette around loan refinance - decision is going to cost first broker a lot of money

Facing a paradox: Earnshaw's theorem in one dimension

Reserved de-dupe rules

What's the difference between 'rename' and 'mv'?

Python: return float 1.0 as int 1 but float 1.5 as float 1.5

Will google still index a page if I use a $_SESSION variable?



Copying/replacing first letter in column of attribute table in ArcMap with field calculator and Python Parser?


Rounding column in attribute table using ArcGIS Field Calculator?Replacing attribute table entries using Python scriptFinding and copying text with Field Calculator in ArcGIS for Desktop?ArcGIS field calculator Python generate random point names from attribute tableReplacing multiple values in attribute table field using ArcGIS field calculator and python parser?Replacing values with non-English characters in attribute table field using ArcGIS field calculator and python parser?Make ArcMap label using the first letter from each word in an attributeReclassifying Vector Field using python parser in field calculatorSplitting second word of attribute using Python Parser of ArcMap Field Calculator?Extracting numbers from string field but omit some unnecessary cells using Python Parser of ArcMap Field Calculator?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















How to copy / replace the first letter in a column if that letter is "N" and replace with "C" in the field name "DISTRICT" inside the attribute table in ArcMap using Python inside the field calculator?










share|improve this question






























    0















    How to copy / replace the first letter in a column if that letter is "N" and replace with "C" in the field name "DISTRICT" inside the attribute table in ArcMap using Python inside the field calculator?










    share|improve this question


























      0












      0








      0








      How to copy / replace the first letter in a column if that letter is "N" and replace with "C" in the field name "DISTRICT" inside the attribute table in ArcMap using Python inside the field calculator?










      share|improve this question
















      How to copy / replace the first letter in a column if that letter is "N" and replace with "C" in the field name "DISTRICT" inside the attribute table in ArcMap using Python inside the field calculator?







      arcgis-desktop arcmap field-calculator python-parser






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 3 hours ago









      PolyGeo

      53.9k1781245




      53.9k1781245










      asked 7 hours ago









      Anthony StokesAnthony Stokes

      947




      947




















          4 Answers
          4






          active

          oldest

          votes


















          4














          The general format for overall string replace in Python in the Field Calculator is



          = !stringvar!.replace("substring to find", "new substring")


          If you want to only change the first initial for all records, you could build this based on a slice of the string.



          = "C" + !stringvar![1:]


          If you only want to change the first initial if it starts with a "N", then you're getting into conditional statements (if/then) and should wrap this in a function for use within the Field Calculator. Build this in the codebook/pre-Logic script code.



          def replaceIfN(fieldtochange):
          if fieldtochange.lower().startswith("n"): # handles both n and N
          return "C" + fieldtochange[1:]
          else: # no change made
          return fieldtochange


          Run this with



           = replaceIfN(!DISTRICT!) 


          See http://desktop.arcgis.com/en/arcmap/10.3/manage-data/tables/calculate-field-examples.htm






          share|improve this answer























          • The conditional statement is the solution I was looking for.

            – Anthony Stokes
            6 hours ago


















          6














          You don't even have to write any code!



          Simply edit the table and do a find and replace on the selected field.



          Find and replace



          Example of replacing B with XXX.



          Replaced



          Result of replacement






          share|improve this answer























          • I need to know how to copy / replace the first letter in a column if that letter is "N" and replace with "C" using python inside the field calculator. I don't want to replace every instance of "N". This would require some code.

            – Anthony Stokes
            6 hours ago






          • 1





            Well... if you look at the image, what does Text match say... You can use @Jackson_Dunn's approach if you intend to wrap the field calculate in say modelbuilder. If you just want to replace the first N with C then my approach is less painful and quicker.

            – Hornbydd
            6 hours ago












          • I see what you mean. This is the fastest way without code but I like to always know the python equivalent.

            – Anthony Stokes
            5 hours ago












          • Are imgur images always going to be on the site, or is there a risk of them not loading at some distant point in the future? If the latter, please elaborate on your answer (e.g. Select "Start of Field" for Text match)

            – smiller
            5 hours ago






          • 1





            I didnt know of find and replace, nice!

            – BERA
            4 hours ago


















          1














          You can add a number to the python replace code to determine how many instances to change (in your case just one):



          !District!.replace("C", "N", 1)





          share|improve this answer










          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















          • Thanks @Jackson Dunn. I'd be curious as to performance between the string replace number of instances vs. string slicing. I suspect in this case it's minimal but may be worth testing on larger fields or more complex replacements.

            – smiller
            3 hours ago


















          0














          Using vbscript instead if you're working in ArcGIS Desktop, The code is:



          REPLACE ([DISTRICT],"C","N",1,1)


          Where :



          • the first 1 equals the line position (first character)

          • and the second 1 is amount of characters to change (only need to change one letter per row, not all C's and N's).





          share|improve this answer










          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















          • This is the VB script solution so thank you for that but I was wondering how to solve it using python in the field calculator.

            – Anthony Stokes
            6 hours ago











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "79"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317805%2fcopying-replacing-first-letter-in-column-of-attribute-table-in-arcmap-with-field%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          4 Answers
          4






          active

          oldest

          votes








          4 Answers
          4






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          4














          The general format for overall string replace in Python in the Field Calculator is



          = !stringvar!.replace("substring to find", "new substring")


          If you want to only change the first initial for all records, you could build this based on a slice of the string.



          = "C" + !stringvar![1:]


          If you only want to change the first initial if it starts with a "N", then you're getting into conditional statements (if/then) and should wrap this in a function for use within the Field Calculator. Build this in the codebook/pre-Logic script code.



          def replaceIfN(fieldtochange):
          if fieldtochange.lower().startswith("n"): # handles both n and N
          return "C" + fieldtochange[1:]
          else: # no change made
          return fieldtochange


          Run this with



           = replaceIfN(!DISTRICT!) 


          See http://desktop.arcgis.com/en/arcmap/10.3/manage-data/tables/calculate-field-examples.htm






          share|improve this answer























          • The conditional statement is the solution I was looking for.

            – Anthony Stokes
            6 hours ago















          4














          The general format for overall string replace in Python in the Field Calculator is



          = !stringvar!.replace("substring to find", "new substring")


          If you want to only change the first initial for all records, you could build this based on a slice of the string.



          = "C" + !stringvar![1:]


          If you only want to change the first initial if it starts with a "N", then you're getting into conditional statements (if/then) and should wrap this in a function for use within the Field Calculator. Build this in the codebook/pre-Logic script code.



          def replaceIfN(fieldtochange):
          if fieldtochange.lower().startswith("n"): # handles both n and N
          return "C" + fieldtochange[1:]
          else: # no change made
          return fieldtochange


          Run this with



           = replaceIfN(!DISTRICT!) 


          See http://desktop.arcgis.com/en/arcmap/10.3/manage-data/tables/calculate-field-examples.htm






          share|improve this answer























          • The conditional statement is the solution I was looking for.

            – Anthony Stokes
            6 hours ago













          4












          4








          4







          The general format for overall string replace in Python in the Field Calculator is



          = !stringvar!.replace("substring to find", "new substring")


          If you want to only change the first initial for all records, you could build this based on a slice of the string.



          = "C" + !stringvar![1:]


          If you only want to change the first initial if it starts with a "N", then you're getting into conditional statements (if/then) and should wrap this in a function for use within the Field Calculator. Build this in the codebook/pre-Logic script code.



          def replaceIfN(fieldtochange):
          if fieldtochange.lower().startswith("n"): # handles both n and N
          return "C" + fieldtochange[1:]
          else: # no change made
          return fieldtochange


          Run this with



           = replaceIfN(!DISTRICT!) 


          See http://desktop.arcgis.com/en/arcmap/10.3/manage-data/tables/calculate-field-examples.htm






          share|improve this answer













          The general format for overall string replace in Python in the Field Calculator is



          = !stringvar!.replace("substring to find", "new substring")


          If you want to only change the first initial for all records, you could build this based on a slice of the string.



          = "C" + !stringvar![1:]


          If you only want to change the first initial if it starts with a "N", then you're getting into conditional statements (if/then) and should wrap this in a function for use within the Field Calculator. Build this in the codebook/pre-Logic script code.



          def replaceIfN(fieldtochange):
          if fieldtochange.lower().startswith("n"): # handles both n and N
          return "C" + fieldtochange[1:]
          else: # no change made
          return fieldtochange


          Run this with



           = replaceIfN(!DISTRICT!) 


          See http://desktop.arcgis.com/en/arcmap/10.3/manage-data/tables/calculate-field-examples.htm







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 6 hours ago









          smillersmiller

          2,229217




          2,229217












          • The conditional statement is the solution I was looking for.

            – Anthony Stokes
            6 hours ago

















          • The conditional statement is the solution I was looking for.

            – Anthony Stokes
            6 hours ago
















          The conditional statement is the solution I was looking for.

          – Anthony Stokes
          6 hours ago





          The conditional statement is the solution I was looking for.

          – Anthony Stokes
          6 hours ago













          6














          You don't even have to write any code!



          Simply edit the table and do a find and replace on the selected field.



          Find and replace



          Example of replacing B with XXX.



          Replaced



          Result of replacement






          share|improve this answer























          • I need to know how to copy / replace the first letter in a column if that letter is "N" and replace with "C" using python inside the field calculator. I don't want to replace every instance of "N". This would require some code.

            – Anthony Stokes
            6 hours ago






          • 1





            Well... if you look at the image, what does Text match say... You can use @Jackson_Dunn's approach if you intend to wrap the field calculate in say modelbuilder. If you just want to replace the first N with C then my approach is less painful and quicker.

            – Hornbydd
            6 hours ago












          • I see what you mean. This is the fastest way without code but I like to always know the python equivalent.

            – Anthony Stokes
            5 hours ago












          • Are imgur images always going to be on the site, or is there a risk of them not loading at some distant point in the future? If the latter, please elaborate on your answer (e.g. Select "Start of Field" for Text match)

            – smiller
            5 hours ago






          • 1





            I didnt know of find and replace, nice!

            – BERA
            4 hours ago















          6














          You don't even have to write any code!



          Simply edit the table and do a find and replace on the selected field.



          Find and replace



          Example of replacing B with XXX.



          Replaced



          Result of replacement






          share|improve this answer























          • I need to know how to copy / replace the first letter in a column if that letter is "N" and replace with "C" using python inside the field calculator. I don't want to replace every instance of "N". This would require some code.

            – Anthony Stokes
            6 hours ago






          • 1





            Well... if you look at the image, what does Text match say... You can use @Jackson_Dunn's approach if you intend to wrap the field calculate in say modelbuilder. If you just want to replace the first N with C then my approach is less painful and quicker.

            – Hornbydd
            6 hours ago












          • I see what you mean. This is the fastest way without code but I like to always know the python equivalent.

            – Anthony Stokes
            5 hours ago












          • Are imgur images always going to be on the site, or is there a risk of them not loading at some distant point in the future? If the latter, please elaborate on your answer (e.g. Select "Start of Field" for Text match)

            – smiller
            5 hours ago






          • 1





            I didnt know of find and replace, nice!

            – BERA
            4 hours ago













          6












          6








          6







          You don't even have to write any code!



          Simply edit the table and do a find and replace on the selected field.



          Find and replace



          Example of replacing B with XXX.



          Replaced



          Result of replacement






          share|improve this answer













          You don't even have to write any code!



          Simply edit the table and do a find and replace on the selected field.



          Find and replace



          Example of replacing B with XXX.



          Replaced



          Result of replacement







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 6 hours ago









          HornbyddHornbydd

          27.1k32957




          27.1k32957












          • I need to know how to copy / replace the first letter in a column if that letter is "N" and replace with "C" using python inside the field calculator. I don't want to replace every instance of "N". This would require some code.

            – Anthony Stokes
            6 hours ago






          • 1





            Well... if you look at the image, what does Text match say... You can use @Jackson_Dunn's approach if you intend to wrap the field calculate in say modelbuilder. If you just want to replace the first N with C then my approach is less painful and quicker.

            – Hornbydd
            6 hours ago












          • I see what you mean. This is the fastest way without code but I like to always know the python equivalent.

            – Anthony Stokes
            5 hours ago












          • Are imgur images always going to be on the site, or is there a risk of them not loading at some distant point in the future? If the latter, please elaborate on your answer (e.g. Select "Start of Field" for Text match)

            – smiller
            5 hours ago






          • 1





            I didnt know of find and replace, nice!

            – BERA
            4 hours ago

















          • I need to know how to copy / replace the first letter in a column if that letter is "N" and replace with "C" using python inside the field calculator. I don't want to replace every instance of "N". This would require some code.

            – Anthony Stokes
            6 hours ago






          • 1





            Well... if you look at the image, what does Text match say... You can use @Jackson_Dunn's approach if you intend to wrap the field calculate in say modelbuilder. If you just want to replace the first N with C then my approach is less painful and quicker.

            – Hornbydd
            6 hours ago












          • I see what you mean. This is the fastest way without code but I like to always know the python equivalent.

            – Anthony Stokes
            5 hours ago












          • Are imgur images always going to be on the site, or is there a risk of them not loading at some distant point in the future? If the latter, please elaborate on your answer (e.g. Select "Start of Field" for Text match)

            – smiller
            5 hours ago






          • 1





            I didnt know of find and replace, nice!

            – BERA
            4 hours ago
















          I need to know how to copy / replace the first letter in a column if that letter is "N" and replace with "C" using python inside the field calculator. I don't want to replace every instance of "N". This would require some code.

          – Anthony Stokes
          6 hours ago





          I need to know how to copy / replace the first letter in a column if that letter is "N" and replace with "C" using python inside the field calculator. I don't want to replace every instance of "N". This would require some code.

          – Anthony Stokes
          6 hours ago




          1




          1





          Well... if you look at the image, what does Text match say... You can use @Jackson_Dunn's approach if you intend to wrap the field calculate in say modelbuilder. If you just want to replace the first N with C then my approach is less painful and quicker.

          – Hornbydd
          6 hours ago






          Well... if you look at the image, what does Text match say... You can use @Jackson_Dunn's approach if you intend to wrap the field calculate in say modelbuilder. If you just want to replace the first N with C then my approach is less painful and quicker.

          – Hornbydd
          6 hours ago














          I see what you mean. This is the fastest way without code but I like to always know the python equivalent.

          – Anthony Stokes
          5 hours ago






          I see what you mean. This is the fastest way without code but I like to always know the python equivalent.

          – Anthony Stokes
          5 hours ago














          Are imgur images always going to be on the site, or is there a risk of them not loading at some distant point in the future? If the latter, please elaborate on your answer (e.g. Select "Start of Field" for Text match)

          – smiller
          5 hours ago





          Are imgur images always going to be on the site, or is there a risk of them not loading at some distant point in the future? If the latter, please elaborate on your answer (e.g. Select "Start of Field" for Text match)

          – smiller
          5 hours ago




          1




          1





          I didnt know of find and replace, nice!

          – BERA
          4 hours ago





          I didnt know of find and replace, nice!

          – BERA
          4 hours ago











          1














          You can add a number to the python replace code to determine how many instances to change (in your case just one):



          !District!.replace("C", "N", 1)





          share|improve this answer










          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















          • Thanks @Jackson Dunn. I'd be curious as to performance between the string replace number of instances vs. string slicing. I suspect in this case it's minimal but may be worth testing on larger fields or more complex replacements.

            – smiller
            3 hours ago















          1














          You can add a number to the python replace code to determine how many instances to change (in your case just one):



          !District!.replace("C", "N", 1)





          share|improve this answer










          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















          • Thanks @Jackson Dunn. I'd be curious as to performance between the string replace number of instances vs. string slicing. I suspect in this case it's minimal but may be worth testing on larger fields or more complex replacements.

            – smiller
            3 hours ago













          1












          1








          1







          You can add a number to the python replace code to determine how many instances to change (in your case just one):



          !District!.replace("C", "N", 1)





          share|improve this answer










          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.










          You can add a number to the python replace code to determine how many instances to change (in your case just one):



          !District!.replace("C", "N", 1)






          share|improve this answer










          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer








          edited 3 hours ago









          PolyGeo

          53.9k1781245




          53.9k1781245






          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered 4 hours ago









          Jackson DunnJackson Dunn

          192




          192




          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.












          • Thanks @Jackson Dunn. I'd be curious as to performance between the string replace number of instances vs. string slicing. I suspect in this case it's minimal but may be worth testing on larger fields or more complex replacements.

            – smiller
            3 hours ago

















          • Thanks @Jackson Dunn. I'd be curious as to performance between the string replace number of instances vs. string slicing. I suspect in this case it's minimal but may be worth testing on larger fields or more complex replacements.

            – smiller
            3 hours ago
















          Thanks @Jackson Dunn. I'd be curious as to performance between the string replace number of instances vs. string slicing. I suspect in this case it's minimal but may be worth testing on larger fields or more complex replacements.

          – smiller
          3 hours ago





          Thanks @Jackson Dunn. I'd be curious as to performance between the string replace number of instances vs. string slicing. I suspect in this case it's minimal but may be worth testing on larger fields or more complex replacements.

          – smiller
          3 hours ago











          0














          Using vbscript instead if you're working in ArcGIS Desktop, The code is:



          REPLACE ([DISTRICT],"C","N",1,1)


          Where :



          • the first 1 equals the line position (first character)

          • and the second 1 is amount of characters to change (only need to change one letter per row, not all C's and N's).





          share|improve this answer










          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















          • This is the VB script solution so thank you for that but I was wondering how to solve it using python in the field calculator.

            – Anthony Stokes
            6 hours ago















          0














          Using vbscript instead if you're working in ArcGIS Desktop, The code is:



          REPLACE ([DISTRICT],"C","N",1,1)


          Where :



          • the first 1 equals the line position (first character)

          • and the second 1 is amount of characters to change (only need to change one letter per row, not all C's and N's).





          share|improve this answer










          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















          • This is the VB script solution so thank you for that but I was wondering how to solve it using python in the field calculator.

            – Anthony Stokes
            6 hours ago













          0












          0








          0







          Using vbscript instead if you're working in ArcGIS Desktop, The code is:



          REPLACE ([DISTRICT],"C","N",1,1)


          Where :



          • the first 1 equals the line position (first character)

          • and the second 1 is amount of characters to change (only need to change one letter per row, not all C's and N's).





          share|improve this answer










          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.










          Using vbscript instead if you're working in ArcGIS Desktop, The code is:



          REPLACE ([DISTRICT],"C","N",1,1)


          Where :



          • the first 1 equals the line position (first character)

          • and the second 1 is amount of characters to change (only need to change one letter per row, not all C's and N's).






          share|improve this answer










          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer








          edited 3 hours ago









          PolyGeo

          53.9k1781245




          53.9k1781245






          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered 7 hours ago









          Jackson DunnJackson Dunn

          192




          192




          New contributor




          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Jackson Dunn is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.












          • This is the VB script solution so thank you for that but I was wondering how to solve it using python in the field calculator.

            – Anthony Stokes
            6 hours ago

















          • This is the VB script solution so thank you for that but I was wondering how to solve it using python in the field calculator.

            – Anthony Stokes
            6 hours ago
















          This is the VB script solution so thank you for that but I was wondering how to solve it using python in the field calculator.

          – Anthony Stokes
          6 hours ago





          This is the VB script solution so thank you for that but I was wondering how to solve it using python in the field calculator.

          – Anthony Stokes
          6 hours ago

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317805%2fcopying-replacing-first-letter-in-column-of-attribute-table-in-arcmap-with-field%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

          Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

          François Viète Contents Biography Work and thought Bibliography See also Notes Further reading External links Navigation menup. 21Google Bookspp. 75–77Google BooksDe thou (from University of Saint Andrews)ArchivedGoogle BooksGoogle BooksGoogle BooksGoogle booksGoogle Bookscc-parthenay.frL'histoire universelle (fr)Universal History (en)ArchivedAdsabs.harvard.eduPagesperso-orange.frArchive.orgChikara Sasaki. Descartes' mathematical thought p.259Google BooksGoogle BooksGoogle Bookspp. 152 and onwardGoogle BooksGoogle BooksScribd.comGoogle Books1257-7979Google BooksGoogle BooksGoogle BooksGoogle BooksGoogle BooksGoogle BooksGallica.bnf.frGoogle BooksGoogle Books"François Viète"Francois Viète: Father of Modern Algebraic NotationThe Lawyer and the GamblerAbout TarporleySite de Jean-Paul GuichardL'algèbre nouvelle"About the Harmonicon"cb120511976(data)1188044800000 0001 0913 5903n82164680ola2013766880073431702w6vt1sb70287374827140948071409480