<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Excel VBO Zahlen und Text Umwandlungsprobleme in Deutschsprachige Community</title>
    <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101255#M458</link>
    <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;​&lt;/P&gt;
&lt;P&gt;Thanks again for your support.&lt;/P&gt;
&lt;P&gt;I took your script and it did not change the values. But as I was watching the codestage run selecting each single cell and jumping to the next. The codestage did not exactly the same as when I do it by hand. So I tried not only Select on the Cell but also Activate. Also Activate did not help but I accidently found something on stackoverflow.&lt;/P&gt;
&lt;P&gt;My Script now looks like this:&lt;/P&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;Dim wb As Object
Dim r As Object, cr as Object

wb = GetWorkbook(handle, "")
wb.Activate()

cr = wb.ActiveSheet.Range(cellref)

For Each r In cr
    r.Select
	r.Value = r.Value	
Next&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;after reassigning / copying with r.Value=r.Value it just works... and its much faster as the macro&lt;/P&gt;</description>
    <pubDate>Fri, 19 Nov 2021 12:30:48 GMT</pubDate>
    <dc:creator>MarcoMatuttis1</dc:creator>
    <dc:date>2021-11-19T12:30:48Z</dc:date>
    <item>
      <title>Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101238#M441</link>
      <description>&lt;P&gt;Ich hab ein Problem mit der Umwandlung von Zahlen und Texten in Excel über Blueprism.&lt;/P&gt;
&lt;P&gt;SAP öffnet mir über die Exportfunktion eine Excel Instanz mit Daten.&lt;/P&gt;
&lt;P&gt;Die Daten so wie sie im Excel drin sind, sind vom Format her korrekt.&lt;/P&gt;
&lt;P&gt;Wenn ich die Datei jetzt über &lt;EM&gt;&lt;STRONG&gt;Excel VBO - Save Workbook as&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;speichere als Text (Tabstopp-getrennt) dann versaut mir Excel die Zahlenformate und fügt einigen Texten noch Anführungszeichen hinzu.&lt;/P&gt;
&lt;P&gt;Screenshot dazu:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="36663.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/36674i7A4613A08D841B8B/image-size/large?v=v2&amp;amp;px=999" role="button" title="36663.png" alt="36663.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Das Datum in der Spalte Erfaßt am wurde aus 22.12.2021 zu 12/22/2021. Das hab ich korrigieren können indem ich vor dem Speichern die Zellen als MM.DD.YYYY formatiert habe. Deswegen ist es auch geschwärzt.&lt;/P&gt;
&lt;P&gt;Aus normalen Text aus der Excel Datei oben wird Text in Anführungszeichen unten. Nicht bei allen Einträgen aber bei manchen.&lt;/P&gt;
&lt;P&gt;Bei den Zahlen in der Spalte Wert/Währ wird aus dem Zahlenformat mit Punkt als Tausendertrennzeichen und Komma als Dezimaltrennzeichen genau das umgekehrte Format. Zudem packt er jede Zahl bei der das Tausendertrennzeichen Komma vorkommt in Anführungszeichen.&lt;/P&gt;
&lt;P&gt;Weiß jemand wie ich das Problem beheben kann, zumindest mit den Zahlen ?&lt;/P&gt;
&lt;P&gt;Das Anführungszeichen Problem lässt sich wohl beheben in dem ich einfach suchen und ersetzen auf die Textdatei anwende und Anführungszeichen mit nichts ersetze.&lt;/P&gt;
&lt;P&gt;Mein Ausgabeformat in der Textdatei muss&amp;nbsp; aber zwingend Tausendertrennzeichen Punkt und Dezimaltrennzeichen Komma haben.&lt;/P&gt;
&lt;P&gt;Das ist für die Weiterverarbeitung der Datei Pflicht.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Nov 2021 08:49:13 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101238#M441</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-05T08:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101239#M442</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33307"&gt;@MarcoMatuttis1&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I have a feeling those items are being enclosed in quotes because the default column separator on your system is the comma for a CSV. You could try changing the locale settings, or if you're handy with VBA you could change the code stage to address this. Take a look at &lt;A href="https://stackoverflow.com/questions/13496686/how-to-save-semi-colon-delimited-csv-file-using-vba" target="_blank" rel="noopener"&gt;this&lt;/A&gt; thread on Stack Overflow. You'll want to add the "Local:=true" portion to the Save As code.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;​</description>
      <pubDate>Fri, 05 Nov 2021 11:40:07 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101239#M442</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-11-05T11:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101240#M443</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;​&lt;/P&gt;
&lt;P&gt;Thank you for your reply. Unfortunately I'm not sure if that "Local:=True" will help me with my problem. At the moment I'm facing this problem on 2 different cases. At least I think it is kinda the same problem.&lt;/P&gt;
&lt;P&gt;In my example from above I'm saving the excel as a text file with tab separated values. My Windows 10 regional settings are german, my Excel also runs on german, only blue prism runs in "English UK" Settings. In my Excel sheet the numbers and dates have the right format. But when I use the Excel VBO save as function it will save the values in a different format. From the german number format in the Excel sheet 1.016,40 it will save it as "1,016.40" in the tab separated text file.&lt;/P&gt;
&lt;P&gt;My suspicion is, that the bluebrism VBO somehow mixes the language settings and for some reason the result is not longer interpreted as a number but as text because it writes it in quotation marks in this text file.&lt;/P&gt;
&lt;P&gt;I have copied the source from the Excel VBO:&lt;/P&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;newworkbookname = ExecWithTimeout(Timeout, "Save Workbook As",
Function()
    Dim wb as Object  = GetWorkbook(handle,workbookname)
    Dim excel as Object = wb.Application

    excel.DisplayAlerts = False
    wb.SaveAs(filename,20)
    excel.DisplayAlerts = True

    Return wb.Name
End Function)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;In another process I have a similar problem with the save workbook. I use the format cells action to format some cells explicit as numbers. Then I copy these cells cells from workbook a to workbook b. when i open workbook b afterwards and sort it then the new cells that I just copied are not in the right order because excel does not interprete these numbers as real numbers. I also have the feeling that this also has something to do with the language settings.&lt;/P&gt;
&lt;P&gt;Heres the normal Save Workbook:&lt;/P&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;ExecWithTimeout(Timeout, "Save Workbook",
Sub()
    Dim wb as Object = GetWorkbook(handle,workbookname)
    Dim excel as Object = wb.Application
    excel.DisplayAlerts = False
    Invoke(wb, "Save")
    excel.DisplayAlerts = True
End Sub)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Do you know where I should put that local:=true in these 2 code stages that I can test this ? Sadly I'm not experienced with Visual Basic at all&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 07:52:06 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101240#M443</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-10T07:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101241#M444</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Here is my other problem:&lt;/P&gt;
&lt;DIV class="media" style="overflow: hidden"&gt;
&lt;DIV class="media" style="overflow: hidden"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="36654.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/36668iC86D481E6A3792CA/image-size/large?v=v2&amp;amp;px=999" role="button" title="36654.png" alt="36654.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="media" style="overflow: hidden"&gt;I have this Excel Sheet. Until Row 29850 is old data. From A29851 to M32800 is data that I copied from another worksheet with the &lt;STRONG&gt;MS Excel VBO - Copy and Paste Worksheet Range&lt;/STRONG&gt; Action.&lt;/DIV&gt;
&lt;DIV class="media" style="overflow: hidden"&gt;In the coloums AA to AN is an SVERWEIS (VLOOKUP in English i think) formula looking like this for example:&lt;/DIV&gt;
&lt;DIV class="media" style="overflow: hidden"&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;=SVERWEIS($A32761;'C:\bothomedir\VMST\O\Bereich\CO\Kostenplanung\Datenbasis\[Listenfelder_2021.xlsx]Vertriebsstruktur'!$A$7:$G$303;3;FALSCH)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;​In the old data from row 29850 upwards everything works fine because the formula in AA to AN recognize the data in coloumns A and B correctly.&lt;/P&gt;
&lt;P&gt;In this example you can see that the numbers that are in Cell A29851 (red circle cell) is not recognized properly because excel shows #NV in these Cells from AA to AN.&lt;/P&gt;
&lt;P&gt;When I know click in to the formula of A29851 and press enter the number is getting properly recognized as a number and the cells AA to AN display the right information.&lt;/P&gt;
&lt;P&gt;I stole a macro from some website that goes through all the cells and does exactly that.&lt;/P&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;Sub RefreshAllCells()
Dim r As Range, rr As Range
Set rr = Selection
For Each r In rr
    r.Select
    Application.SendKeys "{F2}"
    Application.SendKeys "{ENTER}"
    DoEvents
Next
End Sub&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;​Unfortunately this macro takes like 40 minutes to go through all the new 3000 rows to refresh the cells. Recalculation or refreshing the worksheet did not work.&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;When I copy the data from the worksheet A to B by hand. With mouse and keyboard. mark cells. right click, select copy and paste it into the other will all the numbers are recognized correctly in worksheet B. But when I use the VBO Action it does not work properly. Also formatting the cells afterwards by hand or blueprism will not work. I have to click every single cell and press enter for it to work::&lt;/P&gt;
&lt;P&gt;Got a solution for that as well ?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 13:25:05 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101241#M444</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-10T13:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101242#M445</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33307"&gt;@MarcoMatuttis1&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;You've got quite the list of issues. &lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;​ Lets start with the most basic. You mentioned that your OS and Office applications are all running in German locale. Have you considered running the German localized version of Blue Prism? What version of Blue Prism are you running? Are you using the Excel VBO that shipped with your specific software, or have you downloaded the latest Excel VBO from the Digital Exchange?&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Eric</description>
      <pubDate>Wed, 10 Nov 2021 14:25:32 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101242#M445</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-11-10T14:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101243#M446</link>
      <description>&lt;P&gt;I'm running Blue Prism 6.10.1 and I'm using the excel VBO that came with it.&lt;/P&gt;
&lt;P&gt;For the first problem in my opening post I changed the blue prism language to german and tested if it would make a difference in exporting these dates and numbers. Unfortunately it didn't solve my problem.&lt;/P&gt;
&lt;P&gt;Since the processes that are now running in production have been created with the english version of blueprism (we started blueprism in our company when there was no german version) I had to stick to it because there were many errors when I switched the language to german for testing because there are many actions that would require adjustments to the german language in the application manager.&lt;/P&gt;
&lt;P&gt;I kinda solved the first problem now. I created a custom Excel object and use blueprism to do the stuff like I would do it by hand. Move the mouse and Click Save file as by mouse etc.&lt;/P&gt;
&lt;P&gt;Nevertheless I was hoping to solve my problem with the provided Excel VBO actions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately I can not use the same method to solve my problem number 2 because iam not able to mark cells and copy stuff from a to b by using blue prism to navigate mouse and keyboard actions.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 14:31:01 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101243#M446</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-10T14:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101244#M447</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33307"&gt;@MarcoMatuttis1&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;On the first issue here's what I would suggest trying.​&lt;BR /&gt;&lt;BR /&gt;
&lt;OL&gt;
&lt;LI&gt;Create a copy of the &lt;STRONG&gt;Save Workbook As&lt;/STRONG&gt; action and name it something like &lt;STRONG&gt;Save Workbook As CSV&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;In the new action rename the Code stage to &lt;STRONG&gt;SaveWorkbookAsCSV&lt;/STRONG&gt;, otherwise you get a stage name conflict.&lt;/LI&gt;
&lt;LI&gt;Open the code stage and change the line &lt;EM&gt;&lt;STRONG&gt;wb.SaveAs(filename)&lt;/STRONG&gt;&lt;/EM&gt; (should be line 11) to look like this - &lt;EM&gt;&lt;STRONG&gt;wb.SaveAs(Filename:=filename, FileFormat:=62, Local:=True)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/LI&gt;
&lt;/OL&gt;
The &lt;STRONG&gt;FileFormat:=62&lt;/STRONG&gt; portion basically instructs Excel to specifically save the file in xlCSVUTF8 format. If you want to use regular old CSV (i.e. xlCSV), change the 62 to a 6 (ex. FileFormat:=6).&lt;BR /&gt;&lt;BR /&gt;Give that a try and see if there's a difference.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Eric&lt;BR /&gt;​</description>
      <pubDate>Wed, 10 Nov 2021 14:59:06 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101244#M447</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-11-10T14:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101245#M448</link>
      <description>&lt;P&gt;There seems to be a slight misunderstanding. I don't need the export as .csv, i need it as &lt;EM&gt;&lt;STRONG&gt;tab stop seperated textfile.&lt;/STRONG&gt;&lt;/EM&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;I already made a duplicate of the original Save Workbook as Action and made a slight edit to it. As far as I have read on various websites the right file format for tab stop separated values is 20 (see here: &lt;A href="https://docs.microsoft.com/en-us/office/vba/api/excel.xlfileformat" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/office/vba/api/excel.xlfileformat&lt;/A&gt; and &lt;A href="https://stackoverflow.com/questions/39766963/excel-vba-save-as-tab-delimited-file" target="_blank" rel="noopener"&gt;https://stackoverflow.com/questions/39766963/excel-vba-save-as-tab-delimited-file&lt;/A&gt; ).&lt;/P&gt;
&lt;P&gt;I added your suggeestion and now my code stage looks like this:&lt;/P&gt;
&lt;DIV class="media" style="overflow: hidden"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="36657.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/36667iE86FBCCE70185A8A/image-size/large?v=v2&amp;amp;px=999" role="button" title="36657.png" alt="36657.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;DIV class="media" style="overflow: hidden"&gt;The Textfile I generated with this passes the eye test. All the numbers have the right format and also the texts no longer have quotation marks, I will test the textfile later if it passes the next step of our process. But as far I can tell. This worked. Thank you very much!&lt;/DIV&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;EDIT&lt;/P&gt;
&lt;P&gt;i just noticed that the images I upload are not clickable thumbnails. I edit my post above describing my 2nd problem so that you can see the actual screenshot.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 07:44:07 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101245#M448</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-11T07:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101246#M449</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33307"&gt;@MarcoMatuttis1&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I’m glad to hear we may have resolved your initial issue.&lt;/P&gt;
&lt;P&gt;Regarding the second issue with copy-and-paste, if you click on the column header of one of the problem columns (so the entire column of data is selected) and set the formatting to &lt;STRONG&gt;Number&lt;/STRONG&gt; does that have any effect?​​ What about if you do that before the new data is copied into the workbook?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Eric&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 11:40:53 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101246#M449</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-11-11T11:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101247#M450</link>
      <description>&lt;P&gt;Unfortunately not. I tried formating single cells, ranges and even the whole coloumn. I also tried formating the cells in worksheet A before i copy and paste them to worksheet B.&lt;BR /&gt;I can even change the cell format to text and then back to number and it will not trigger the effect.&lt;/P&gt;
&lt;P&gt;Only when I click in the area where I can edit the formula and then press enter it actually "updates" the cell.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 13:20:44 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101247#M450</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-11T13:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101248#M451</link>
      <description>Ok, and can you verify that on the &lt;STRONG&gt;Formulas&lt;/STRONG&gt; menu the &lt;STRONG&gt;Calculation Options&lt;/STRONG&gt; are set to &lt;STRONG&gt;Automatic&lt;/STRONG&gt;?&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="36658.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/36666i6A04EBE82BF0905B/image-size/large?v=v2&amp;amp;px=999" role="button" title="36658.png" alt="36658.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Eric</description>
      <pubDate>Thu, 11 Nov 2021 13:55:56 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101248#M451</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-11-11T13:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101249#M452</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33307"&gt;@MarcoMatuttis1&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Here's something that might work for you. In the &lt;STRONG&gt;Copy and Paste Worksheet&lt;/STRONG&gt; action that you're using to paste the source data into the destination, open the Code stage​ (should be titled &lt;STRONG&gt;Paste Worksheet&lt;/STRONG&gt;). The code should look something like this:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;Dim sw, dw As Object
Dim ss, ds As Object
Dim excel, sheet, source, destination, cells, cell As Object

Try

sw = GetWorkbook(Handle, Source_Workbook)
dw = GetWorkbook(Handle, Destination_Workbook)

ss = GetWorksheet(Handle, Source_Workbook, Source_Worksheet)
ds = GetWorksheet(Handle, Destination_Workbook, Destination_Worksheet)

sw.Activate()
ss.Activate()
excel = ss.Application
sheet = excel.ActiveSheet
cell = excel.ActiveCell

If Source_Range="" Then
	cells = sheet.Cells
	Destination_Range = "A1"
Else
	cells = sheet.Range(Source_Range)
End If

cells.Select()
source = excel.Selection
source.Copy()
cell.Select()

dw.Activate()
ds.Activate()
sheet = excel.ActiveSheet
cell = excel.ActiveCell
destination = sheet.Range(Destination_Range)
destination.Select()
sheet.Paste()
cell.Select()

My.Computer.Clipboard.Clear()

Success = True

Catch e As Exception
	Success = False
	Message = e.Message
Finally
	sw = Nothing
	ss = Nothing
	dw = Nothing
	ds = Nothing
	excel = Nothing
	sheet = Nothing
	source = Nothing
	destination = Nothing
	cells = Nothing
	cell = Nothing
End Try
​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Just after line 38, which should be &lt;EM&gt;&lt;STRONG&gt;cell.Select()&lt;/STRONG&gt;&lt;/EM&gt;, and before line 40, which should be &lt;EM&gt;&lt;STRONG&gt;My.Computer.Clipboard.Clear()&lt;/STRONG&gt;&lt;/EM&gt;, add this line: &lt;STRONG&gt;ds.Calculate()&lt;/STRONG&gt;. The resulting code should now look like this:&lt;/P&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;Dim sw, dw As Object
Dim ss, ds As Object
Dim excel, sheet, source, destination, cells, cell As Object

Try

sw = GetWorkbook(Handle, Source_Workbook)
dw = GetWorkbook(Handle, Destination_Workbook)

ss = GetWorksheet(Handle, Source_Workbook, Source_Worksheet)
ds = GetWorksheet(Handle, Destination_Workbook, Destination_Worksheet)

sw.Activate()
ss.Activate()
excel = ss.Application
sheet = excel.ActiveSheet
cell = excel.ActiveCell

If Source_Range="" Then
	cells = sheet.Cells
	Destination_Range = "A1"
Else
	cells = sheet.Range(Source_Range)
End If

cells.Select()
source = excel.Selection
source.Copy()
cell.Select()

dw.Activate()
ds.Activate()
sheet = excel.ActiveSheet
cell = excel.ActiveCell
destination = sheet.Range(Destination_Range)
destination.Select()
sheet.Paste()
cell.Select()

ds.Calculate()

My.Computer.Clipboard.Clear()

Success = True

Catch e As Exception
	Success = False
	Message = e.Message
Finally
	sw = Nothing
	ss = Nothing
	dw = Nothing
	ds = Nothing
	excel = Nothing
	sheet = Nothing
	source = Nothing
	destination = Nothing
	cells = Nothing
	cell = Nothing
End Try
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;This should should force a recalculation of all formulas on the worksheet. If that doesn't work, there's another VBA function called &lt;EM&gt;&lt;STRONG&gt;CalculateFullRebuild()&lt;/STRONG&gt;&lt;/EM&gt; which &lt;SPAN&gt;forces a full calculation of the data &lt;SPAN style="text-decoration: underline"&gt;and&lt;/SPAN&gt; rebuilds the dependencies for all open workbooks. That's only available on the Application object though.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Cheers,&lt;BR /&gt;Eric&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;BR /&gt;​</description>
      <pubDate>Thu, 11 Nov 2021 14:24:30 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101249#M452</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-11-11T14:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101250#M453</link>
      <description>Thank you Eric. I will try your possible solution and provide feedback tomorrow.</description>
      <pubDate>Thu, 11 Nov 2021 14:37:43 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101250#M453</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-11T14:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101251#M454</link>
      <description>&lt;P&gt;Unfortunately the suggestion did not work. I have a suspicion that the data is somehow copied without using the right format.&lt;/P&gt;
&lt;P&gt;But changing the format of the source cells before copying nor changing the format after copying seems to work right unless I click in that field and press enter or overwrite the cell with the exact same value by hand.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Anyways, its friday and i have enough for this week. Have a nice weekend. Maybe we can find a solution on monday.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Nov 2021 14:34:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101251#M454</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-12T14:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101252#M455</link>
      <description>&lt;P&gt;I think I have a possible solution that might work, I just need a little help with it.&lt;/P&gt;
&lt;P&gt;The target excel worksheet file is a file that has no macros. (.xlsx)&lt;/P&gt;
&lt;P&gt;So I can not add the Macro I mentioned above to the file and execute it. The runtime was extremely long but it worked after all so it is my only solution at the moment.&lt;/P&gt;
&lt;P&gt;I just need to execute the excel macro as code stage or lets say build a code stage that does the same as the excel macro would do.&lt;/P&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;Sub RefreshAllCells()
Dim r As Range, rr As Range
Set rr = Selection
For Each r In rr
    r.Select
    Application.SendKeys "{F2}"
    Application.SendKeys "{ENTER}"
    DoEvents
Next
End Sub&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Anyone here that is familiar enough with visual basic to create a page in the excel vbo which does exactly that ?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Nov 2021 15:09:21 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101252#M455</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-17T15:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101253#M456</link>
      <description>Hi Marco,&lt;BR /&gt;&lt;BR /&gt;es scheint als wenn Du versuchst die fehlerhafte Kodierung in Excel mithilfe von Workarounds zu beheben. Die Formatierung hat aber vermutlich vor dem Release Change auf BP6.10.1 funktioniert? Falls ja, schau Dir mal den Known Issue &lt;SPAN&gt;&lt;SPAN&gt;BP-5825 an und ob der temporäre Lösungsvorschlag Dir helfen kann. Hier auch mal ein wertvoller Hinweis den es von BP dazu gibt: "&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;DIV dir="ltr"&gt;Following that, once you select English again, Blue prism will act as if the system is set to English, including locale formatting.&lt;/DIV&gt;
&lt;DIV dir="ltr"&gt;If the language selected in BP matches the "Windows display language", then the "locale format" is based on the OS's "Region format".&lt;BR /&gt;If the language selected in BP does not match the "Windows display language", then the "locale format" is based to the selected BP language.&lt;BR /&gt;&lt;BR /&gt;This cannot be automatically be set to English however and must be selected from the option, this will update the User.config file found in "C:\Users\&amp;lt;USERNAME&amp;gt;\AppData\Roaming\Blue Prism Limited\Automate V3" so the setting will persist for each subsequent login"&lt;BR /&gt;&lt;BR /&gt;Ggf. hast Du aufgrund eines zugrunde liegenden Charsets auch bei anderen Aktionen bereits Probleme bemerkt, falls dem so ist kann dieser Workaround ggf. helfen.&lt;BR /&gt;&lt;BR /&gt;Grüße&lt;BR /&gt;Jan&lt;/DIV&gt;</description>
      <pubDate>Wed, 17 Nov 2021 15:48:43 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101253#M456</guid>
      <dc:creator>al2piwo</dc:creator>
      <dc:date>2021-11-17T15:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101254#M457</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33307"&gt;@MarcoMatuttis1&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Here's what I did:&lt;BR /&gt;&lt;BR /&gt;Create a copy of an existing action like &lt;STRONG&gt;Go To Cell&lt;/STRONG&gt;. Change the name of the new action to something like &lt;STRONG&gt;Refresh Cell Range&lt;/STRONG&gt;. Here's what mine looks like:&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="36662.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/36677i40A7FFF5C08369F4/image-size/large?v=v2&amp;amp;px=999" role="button" title="36662.png" alt="36662.png" /&gt;&lt;/span&gt;&lt;BR /&gt;There are two input parameters to the action:&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;handle - this is the numeric identifier of the workbook&lt;/LI&gt;
&lt;LI&gt;Cell Range - this is a text value that represents the range of cells that you want to update (ex. A1:A50).&lt;/LI&gt;
&lt;/UL&gt;
You pass these values into the code stage, and here's what my code stage looks like:&lt;BR /&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;Dim wb As Object
Dim r As Object, cr as Object

wb = GetWorkbook(handle, "")
wb.Activate()

cr = wb.ActiveSheet.Range(cellRange)

For Each r In cr
    r.Select
    wb.Application.SendKeys("{F2}")
    wb.Application.SendKeys("{ENTER}")
Next
​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;​&lt;EM&gt;&lt;STRONG&gt;DoEvents&lt;/STRONG&gt;&lt;/EM&gt; is not a core method of VB.NET unless you add a reference to the System.Windows.Forms.dll library. I don't think it's really necessary here.&lt;BR /&gt;&lt;BR /&gt;When you're ready, call the action and pass in the handle of the specific Excel workbook you opened with the VBO and the range of the cells that need to be refreshed.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;There are various things you could do to change this up like passing in a specific worksheet name too. The code above just grabs whatever the active worksheet is on the specific workbook.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Eric</description>
      <pubDate>Wed, 17 Nov 2021 16:02:54 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101254#M457</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-11-17T16:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101255#M458</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;​&lt;/P&gt;
&lt;P&gt;Thanks again for your support.&lt;/P&gt;
&lt;P&gt;I took your script and it did not change the values. But as I was watching the codestage run selecting each single cell and jumping to the next. The codestage did not exactly the same as when I do it by hand. So I tried not only Select on the Cell but also Activate. Also Activate did not help but I accidently found something on stackoverflow.&lt;/P&gt;
&lt;P&gt;My Script now looks like this:&lt;/P&gt;
&lt;PRE class="language-vb"&gt;&lt;CODE&gt;Dim wb As Object
Dim r As Object, cr as Object

wb = GetWorkbook(handle, "")
wb.Activate()

cr = wb.ActiveSheet.Range(cellref)

For Each r In cr
    r.Select
	r.Value = r.Value	
Next&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;after reassigning / copying with r.Value=r.Value it just works... and its much faster as the macro&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 12:30:48 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101255#M458</guid>
      <dc:creator>MarcoMatuttis1</dc:creator>
      <dc:date>2021-11-19T12:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Excel VBO Zahlen und Text Umwandlungsprobleme</title>
      <link>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101256#M459</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/33307"&gt;@MarcoMatuttis1&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Outstanding! Glad you have a solution. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Eric​</description>
      <pubDate>Fri, 19 Nov 2021 13:19:32 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Deutschsprachige-Community/Excel-VBO-Zahlen-und-Text-Umwandlungsprobleme/m-p/101256#M459</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-11-19T13:19:32Z</dc:date>
    </item>
  </channel>
</rss>

