<?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: CTAB fields in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8246927#M100388</link>
    <description>&lt;P&gt;OK, two quick questions.&lt;/P&gt;&lt;P&gt;first off thanks for the diesel expression help, extremely helpful&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;question 1&lt;/P&gt;&lt;P&gt;how do i write the expression now to remove the C from C4.0?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;question 2&lt;/P&gt;&lt;P&gt;can you point me to the best tutorial for learning more about the field command and diesel expressions writing?&lt;/P&gt;</description>
    <pubDate>Wed, 05 Sep 2018 14:33:57 GMT</pubDate>
    <dc:creator>cR3d74</dc:creator>
    <dc:date>2018-09-05T14:33:57Z</dc:date>
    <item>
      <title>CTAB fields</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8231084#M100385</link>
      <description>&lt;P&gt;Apologies right off the bat,&amp;nbsp; &amp;nbsp;i probably should already know how to do this and I hope that I can be clear enough to explain.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am xrefing a border with job specific text and a CTAB reference that numbers my sheet according to my current tab description.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now for the question, How do I create a reference that will separate a text string from number string inside of my current layout tab description.&amp;nbsp; (example: "C2.1- Preliminary Site Layout")&amp;nbsp; &amp;nbsp;How do I have my tab named this and use MTEXT Fields for page numbers and Sheet Titles???&amp;nbsp; I have been digging for an answer all day and this is my last resort when it should have probably been first.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;P&gt;c Ray Walker&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 21:54:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8231084#M100385</guid>
      <dc:creator>cR3d74</dc:creator>
      <dc:date>2018-08-28T21:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: CTAB fields</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8231523#M100386</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6439687"&gt;@cR3d74&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;..How do I have my tab named this and use MTEXT Fields for page numbers and Sheet Titles???&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With Diesel expression field value&lt;/P&gt;
&lt;P&gt;example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;epending on the maximum number of characters for the sheet number

"C2.1      Preliminary Site Layout"
"C2.10     Times of your life"
"C10.101   Batman and Bane showdown"

$(substr,$(getvar,ctab),1,10)
will always give me
	C2.1
	C2.10
	C10.101

$(substr,$(getvar,ctab),11)
	Preliminary Site Layout
	Times of your life
	Batman and Bane showdown&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That should work for you that is if you don't mind having all those white space on the layout tab.&lt;/P&gt;
&lt;P&gt;Refer to the attached sample file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 05:24:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8231523#M100386</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2018-08-29T05:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: CTAB fields</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8232831#M100387</link>
      <description>&lt;P&gt;Thank you for the help...&amp;nbsp; seems like that is exactly what i was wanting.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 14:41:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8232831#M100387</guid>
      <dc:creator>cR3d74</dc:creator>
      <dc:date>2018-08-29T14:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: CTAB fields</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8246927#M100388</link>
      <description>&lt;P&gt;OK, two quick questions.&lt;/P&gt;&lt;P&gt;first off thanks for the diesel expression help, extremely helpful&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;question 1&lt;/P&gt;&lt;P&gt;how do i write the expression now to remove the C from C4.0?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;question 2&lt;/P&gt;&lt;P&gt;can you point me to the best tutorial for learning more about the field command and diesel expressions writing?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 14:33:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8246927#M100388</guid>
      <dc:creator>cR3d74</dc:creator>
      <dc:date>2018-09-05T14:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: CTAB fields</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8250912#M100389</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6439687"&gt;@cR3d74&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;question 1&lt;/P&gt;
&lt;P&gt;how do i write the expression now to remove the C from C4.0?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;$(substr,$(getvar,ctab),2,9)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6439687"&gt;@cR3d74&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;question 2&lt;/P&gt;
&lt;P&gt;can you point me to the best tutorial for learning more about the field command and diesel expressions writing?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for Field &amp;amp; Diesel expression, you can start by reading thru the links below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2016/ENU/AutoCAD-Core/files/GUID-1B6DD22B-10D1-44ED-BAA2-E6D79FE52327-htm.html" target="_blank"&gt;Fields Dialog&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.fourmilab.ch/diesel/" target="_blank"&gt;D I E S E L Dumb Interpretively Evaluated String Expression Language&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2016/ENU/AutoCAD-Core/files/GUID-EF5D2DDE-A170-4BB4-8F76-7F3FAFE30E56-htm.html" target="_blank"&gt;Field Eval system variable&lt;/A&gt;&amp;nbsp;&amp;lt;-- Your other question.&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;
&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>Thu, 06 Sep 2018 19:23:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ctab-fields/m-p/8250912#M100389</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2018-09-06T19:23:50Z</dc:date>
    </item>
  </channel>
</rss>

