<?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>Question Re: Replace Function in SAP analytics cloud in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaa-p/12681933#M4758338</link>
    <description>&lt;SPAN class="mention-scrubbed"&gt;steve5232&lt;/SPAN&gt;&lt;P&gt;Try something like below. You need to provide which property (ID, Description etc ) of dimension you want this replace action on.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2116863-image.png" /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE([d/"EMPLOYEE":WD_EMPLOYEE].[p/ID],".","")&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope it helps !!&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;</description>
    <pubDate>Tue, 29 Nov 2022 08:04:01 GMT</pubDate>
    <dc:creator>N1kh1l</dc:creator>
    <dc:date>2022-11-29T08:04:01Z</dc:date>
    <item>
      <title>Replace Function in SAP analytics cloud</title>
      <link>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaq-p/12681930</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;
  &lt;P&gt;I have a dimension with a list of project number that looks like this.&lt;/P&gt;
  &lt;P&gt;IN.20037820&lt;/P&gt;
  &lt;P&gt;I am trying remove the dot in the middle so that it is trimmed down to IN20037820.&lt;/P&gt;
  &lt;P&gt;So I tried to create a calculated dimension, using the REPLACE function, &lt;/P&gt;
  &lt;P&gt;REPLACE([d/"Status and Commentary":Project_Def_1f3z41s68l] ,'.','')&lt;/P&gt;
  &lt;P&gt;but I get this error. &lt;/P&gt;
  &lt;P&gt;Not sure what it means by choose a property, or how to choose a property, hoping someone here has a clue.&lt;/P&gt;
  &lt;P&gt;"Formula could not be computed: Choose a property for dimension "Project_Def_1f3z41s68l" in function "REPLACE". Please complete or rewrite the formula."&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://answers.sap.com/storage/temp/2116854-question.png" data-attachment="2116854"&gt;question.png&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 06:31:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaq-p/12681930</guid>
      <dc:creator>former_member1316811</dc:creator>
      <dc:date>2022-11-29T06:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Function in SAP analytics cloud</title>
      <link>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaa-p/12681931#M4758336</link>
      <description>&lt;P&gt;Hi Steven,&lt;/P&gt;&lt;P&gt;Have you tried using double quotes: "." ?&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Martijn van Foeken | Interdobs&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 07:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaa-p/12681931#M4758336</guid>
      <dc:creator>mfoeken</dc:creator>
      <dc:date>2022-11-29T07:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Function in SAP analytics cloud</title>
      <link>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaa-p/12681932#M4758337</link>
      <description>&lt;P&gt;Hi  &lt;SPAN class="mention-scrubbed"&gt;steve5232&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;the formula is written with semicolon and you need to specify the property of the dimension you want to change.&lt;/P&gt;&lt;P&gt;Try something like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE([d/"Status and Commentary":Project_Def_1f3z41s68l] .[p/ID];".";"")&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Best regards&lt;BR /&gt;Susanne&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 08:01:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaa-p/12681932#M4758337</guid>
      <dc:creator>Susanne_Helbig</dc:creator>
      <dc:date>2022-11-29T08:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Function in SAP analytics cloud</title>
      <link>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaa-p/12681933#M4758338</link>
      <description>&lt;SPAN class="mention-scrubbed"&gt;steve5232&lt;/SPAN&gt;&lt;P&gt;Try something like below. You need to provide which property (ID, Description etc ) of dimension you want this replace action on.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2116863-image.png" /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPLACE([d/"EMPLOYEE":WD_EMPLOYEE].[p/ID],".","")&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope it helps !!&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 08:04:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaa-p/12681933#M4758338</guid>
      <dc:creator>N1kh1l</dc:creator>
      <dc:date>2022-11-29T08:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Function in SAP analytics cloud</title>
      <link>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaa-p/12681934#M4758339</link>
      <description>&lt;P&gt;Thank you it worked.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 01:50:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/replace-function-in-sap-analytics-cloud/qaa-p/12681934#M4758339</guid>
      <dc:creator>former_member1316811</dc:creator>
      <dc:date>2022-11-30T01:50:39Z</dc:date>
    </item>
  </channel>
</rss>

