<?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: iLogic to Combine Text and Existing Parameter - Similar to Excel concatenate in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-to-combine-text-and-existing-parameter-similar-to-excel/m-p/10182350#M114872</link>
    <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;LabelPart = "AA-" &amp;amp; PartNumber&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Mar 2021 12:18:28 GMT</pubDate>
    <dc:creator>wtriplett</dc:creator>
    <dc:date>2021-03-24T12:18:28Z</dc:date>
    <item>
      <title>iLogic to Combine Text and Existing Parameter - Similar to Excel concatenate</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-to-combine-text-and-existing-parameter-similar-to-excel/m-p/10179547#M114869</link>
      <description>&lt;P&gt;Hi - I am new to iLogic and hopefully there is a simple answer to this post.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a new parameter called LabelPart by adding "AA-" to an existing parameter called PartNumber&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the PartNumber were 0001 the new parameter LabelPart would be AA-0001&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have looked through the forums and can't seem to find a way to solve this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate any help.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 14:18:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-to-combine-text-and-existing-parameter-similar-to-excel/m-p/10179547#M114869</guid>
      <dc:creator>wtriplett</dc:creator>
      <dc:date>2021-03-23T14:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic to Combine Text and Existing Parameter - Similar to Excel concatenate</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-to-combine-text-and-existing-parameter-similar-to-excel/m-p/10179770#M114870</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5139430"&gt;@wtriplett&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you can concatenate like this without iLogic in an iProperty?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Formatted text is the term for linked parameter in ilogic. It is a difficult subject &amp;nbsp;so you really have to read every customization forum post to get a sense of what’s happening, also if you search in the API help you will likely get a sample in VBA to work with. If you have this moved over to the customization forum it will likely get more views.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Do you want this new parameter in the template file? What type of text are you looking to use the formatted text in general note, leader, view label etc ?Unfortunately it needs to be targeted into an object of some kind!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Can you provide a couple of screenshots this would help?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;An example of how this would work, although not perhaps your solution a lead in to the topic.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/ilogic-insert-text-parameter-into-a-text-field/td-p/9730434" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-customization/ilogic-insert-text-parameter-into-a-text-field/td-p/9730434&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 15:21:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-to-combine-text-and-existing-parameter-similar-to-excel/m-p/10179770#M114870</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2021-03-23T15:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic to Combine Text and Existing Parameter - Similar to Excel concatenate</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-to-combine-text-and-existing-parameter-similar-to-excel/m-p/10180745#M114871</link>
      <description>&lt;P&gt;Hi! The syntax should be similar to VB.Net. You can use '+' to combine strings or text parameters like the following.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LabelPart = "AA-"+PartNumber&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 20:57:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-to-combine-text-and-existing-parameter-similar-to-excel/m-p/10180745#M114871</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2021-03-23T20:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic to Combine Text and Existing Parameter - Similar to Excel concatenate</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-to-combine-text-and-existing-parameter-similar-to-excel/m-p/10182350#M114872</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/486618"&gt;@johnsonshiue&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;LabelPart = "AA-" &amp;amp; PartNumber&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Mar 2021 12:18:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-to-combine-text-and-existing-parameter-similar-to-excel/m-p/10182350#M114872</guid>
      <dc:creator>wtriplett</dc:creator>
      <dc:date>2021-03-24T12:18:28Z</dc:date>
    </item>
  </channel>
</rss>

