<?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: How can JSL modify data in a table directly to a specified binary file? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328263#M57760</link>
    <description>&lt;P&gt;I don't know anything about BLK files and very little about VBA, but it *might* be the case that a BLK file is really simple:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;b = loadTextFile("z:/text.blk",blob()); // load your file

mat = blobtomatrix(b,"int",4,"little"); // operate on matrix data

/*:

[1123029, 1113555, 1110044, 1113038, 1113581, 1128108, 1110073, 1113509, 1113521,
1113037, 1113576, 1113586, 1113580, 1113035, 1113027, 1113592, 1113599, 1110059,
1113556, 1113565, 1113595, 1113543, 1113600, 1113520, 1113575, 1110072, 1113571,
1110067, 1113029, 1113582, 1113601, 1113011, 1110058, 1113034, 1113561, 1113593,
1113550, 1113008, 1110066, 1113548, 1113583, 1113039, 1113562, 1113537, 1113577,
1113527, 1113587, 1113541, 1113596, 1110053, 1113578, 1113526, 1113566, 1113591,
1113585, 1113589, 1110074, 1113572, 1110060, 1113590, 1113568, 1113021, 113555,
113038]&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;If you were expecting 64 integers in the earlier file, that's all it contains. I have no idea what order (row major? column major? other?) the values are in.&lt;/P&gt;</description>
    <pubDate>Fri, 30 Oct 2020 16:56:56 GMT</pubDate>
    <dc:creator>Craige_Hales</dc:creator>
    <dc:date>2020-10-30T16:56:56Z</dc:date>
    <item>
      <title>How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/327821#M57709</link>
      <description>&lt;P&gt;"Text.blk" is a binary file saved in C:\, how JSL can write, rewrite, and replace the data in the data table.&lt;BR /&gt;The following code is the VBA code of Excel, which can write the data of excel column A to C :\&lt;/img&gt; text.blk.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-10-29_19-57-29.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27856i27C1EA371BDA2AB6/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-10-29_19-57-29.png" alt="2020-10-29_19-57-29.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Sub text()
    Dim arr, I, filename As String, t As Long
   filename = "c:\text.BLK"
    Open filename For Binary As #1: arr = Range("a2:a" &amp;amp; Cells(Rows.Count, "a").End(3).Row)
    For r = 1 To UBound(arr)
        If Left(arr(r, 1), 2) = "12" Then arr(r, 1) = 1000000 + arr(r, 1)
    Next
    For I = 1 To UBound(arr, 1)
        If IsNumeric(arr(I, 1)) Then Put #1, , CLng(arr(I, 1))
    Next
    Close #1
End Sub&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:41:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/327821#M57709</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2023-06-09T23:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/327840#M57710</link>
      <description>&lt;P&gt;text.BLK&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;code&lt;BR /&gt;123029&lt;BR /&gt;128108&lt;BR /&gt;113555&lt;BR /&gt;113038&lt;/P&gt;</description>
      <pubDate>Thu, 29 Oct 2020 12:20:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/327840#M57710</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-10-29T12:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/327884#M57716</link>
      <description>&lt;P&gt;Use loadTextFile with the blob option (it ignores the file type). Then, depending what you want to do, one of these:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;convert the blob to hex, manipulate the hex (twice as many characters as binary bytes), convert the hex back to blob&lt;/LI&gt;&lt;LI&gt;use blobPeek() to segment the blob, then reassemble the blob with your data injected&lt;/LI&gt;&lt;LI&gt;use blobToMatrix to extract the data and matrixToBlob to reassemble the blob. This is perhaps the most powerful, fastest, and either easiest or hardest to use, depending on the file. The blobToMatrix function will decompose the entire blob (which might be from 2, above) into 1, 2, 4, or 8 byte chunks in a matrix; the chunks can be big- or little- endian integers or floats. (If the data was a stereo wav file, you could make a 2-column matrix of 16-bit integer samples, for example.)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Finally, save the blob with saveTextFile. It does not need a blob option because you either give it a blob or a text string to save.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Oct 2020 14:34:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/327884#M57716</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2020-10-29T14:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328110#M57735</link>
      <description>&lt;P&gt;Thank Craige!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Can these operations be done directly using JSL?&lt;BR /&gt;I was wondering if you could write the first method as JSL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Experts!&lt;/P&gt;</description>
      <pubDate>Fri, 30 Oct 2020 00:07:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328110#M57735</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-10-30T00:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328112#M57736</link>
      <description>&lt;P&gt;I tried to write it, but the key points remained unclear.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-10-30_08-11-42.png" style="width: 899px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27905i65B5ADF97368A06F/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-10-30_08-11-42.png" alt="2020-10-30_08-11-42.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Oct 2020 00:14:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328112#M57736</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-10-30T00:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328120#M57739</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;b = loadTextFile("z:/text.blk",blob()); // load your file

hex = hex(b); // operate on hex data
show(hex); // the binary data is now character data
last4hex = right(hex,8); // two hex characters per byte

last4blob = blobpeek(b,length(b)-4,4); // operate on blob data
show(hex(last4blob)); // same data as above

mat = blobtomatrix(b,"int",4,"big"); // operate on matrix data
show(mat[nrows(mat)],hextonumber(last4hex),blobtomatrix(last4blob,"int",4,"big")); // all the same

// change the hex data (1-based offset to substr function, doubled. this is why programmers count from 0.)
show(substr(hex,5,4)); // the 3rd and 4th bytes, "1100". lets change them to "FE23" 
hex = substr(hex,1,4) || "FE23" || substr(hex,9);
show(hex);
f1=savetextfile("$temp/text1.blk", hextoblob(hex)); // convert hex to blob before saving

// do the same with a blob (0-based offset to blobpeek function)
f2=savetextfile("$temp/text2.blk",blobpeek(b,0,2)||hextoblob("FE23")||blobpeek(b,4));

// do the same with a matrix. the matrix above is 4-bytes/element, lets use 1 instead
mat = blobtomatrix(b,"int",1,"big");
mat[3]=hextonumber("FE"); // 1-based matrix index
mat[4]=hextonumber("23");
f3=savetextfile("$temp/text3.blk",matrixtoblob(mat,"int",1,"big"));

// check our work:
b1=loadtextfile(f1,blob());
b2=loadtextfile(f2,blob());
b3=loadtextfile(f3,blob());

if(b1==b2==b3, write("\!nmatch, as expected"), write("\!nERROR"));

// this shows the changed data 
show(shortesteditscript(hex(b),hex(b1)));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Oct 2020 03:19:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328120#M57739</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2020-10-30T03:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328230#M57755</link>
      <description>&lt;P&gt;Thank Craige!&lt;BR /&gt;I have learned your JSL code, I have no cleavage.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was so careless that I uploaded the "text.blk" file by mistake.I'm sorry.&lt;/P&gt;&lt;P&gt;The original upload was not corresponding to the four data in the table.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;My requirement is to output the 4 data points of the table as a new file as *.blk file.The original BLK file was deleted before the output.&lt;BR /&gt;I re-uploaded the specific VBA Excel file, opened it and clicked the "BLK" button, which would generate a "1t. BLK" file in the path of "C:\".&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-10-30_23-02-21.png" style="width: 677px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27927i07BBC9BC28BCD930/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-10-30_23-02-21.png" alt="2020-10-30_23-02-21.png" /&gt;&lt;/span&gt;&lt;BR /&gt;The request how to write JSL code can achieve this function of VBA: the four data in the table is directly generated and VBA generated BLK file exactly the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 30 Oct 2020 15:05:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328230#M57755</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-10-30T15:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328263#M57760</link>
      <description>&lt;P&gt;I don't know anything about BLK files and very little about VBA, but it *might* be the case that a BLK file is really simple:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;b = loadTextFile("z:/text.blk",blob()); // load your file

mat = blobtomatrix(b,"int",4,"little"); // operate on matrix data

/*:

[1123029, 1113555, 1110044, 1113038, 1113581, 1128108, 1110073, 1113509, 1113521,
1113037, 1113576, 1113586, 1113580, 1113035, 1113027, 1113592, 1113599, 1110059,
1113556, 1113565, 1113595, 1113543, 1113600, 1113520, 1113575, 1110072, 1113571,
1110067, 1113029, 1113582, 1113601, 1113011, 1110058, 1113034, 1113561, 1113593,
1113550, 1113008, 1110066, 1113548, 1113583, 1113039, 1113562, 1113537, 1113577,
1113527, 1113587, 1113541, 1113596, 1110053, 1113578, 1113526, 1113566, 1113591,
1113585, 1113589, 1110074, 1113572, 1110060, 1113590, 1113568, 1113021, 113555,
113038]&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;If you were expecting 64 integers in the earlier file, that's all it contains. I have no idea what order (row major? column major? other?) the values are in.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Oct 2020 16:56:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328263#M57760</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2020-10-30T16:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328450#M57768</link>
      <description>&lt;P&gt;Thank Craige!&lt;BR /&gt;I see. It's the wrong direction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Instead of writing "1T.blk" data to the table, save the data in the table as "1T.blk".&lt;BR /&gt;I give "1T. BLK ", just to indicate the file form in which the data in the table will be saved.&lt;BR /&gt;I tried writing JSL:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-10-31_07-59-01.png" style="width: 886px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27953iC0D2AB957AEC0DE0/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-10-31_07-59-01.png" alt="2020-10-31_07-59-01.png" /&gt;&lt;/span&gt;&lt;BR /&gt;But I still don't know how to save the data in the table in the form of the graph.The saved file suffix name is not the key.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Current Data Table();
dt &amp;lt;&amp;lt; New Column( "new", formula( If( Left( Char( :code ), 2 ) == "12", 1000000 + :code, :code ) ) );
dt &amp;lt;&amp;lt; run formulas;
Column( "new" ) &amp;lt;&amp;lt; deleteFormula;
Wait( 0 );
mx = dt &amp;lt;&amp;lt; GetAsMatrix( {2} );

mx &amp;lt;&amp;lt; Save( "C:\1T.BLK" );//The saved file suffix name is not the key.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 31 Oct 2020 00:07:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328450#M57768</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-10-31T00:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328452#M57769</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Please download the "1T.blk" file again, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;see its structure, and how to save the 4 rows in the table in the form of "1T.blk".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank Craige!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-10-31_08-06-24.png" style="width: 948px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27954iAB0ECA46E453D25D/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-10-31_08-06-24.png" alt="2020-10-31_08-06-24.png" /&gt;&lt;/span&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>Sat, 31 Oct 2020 00:06:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328452#M57769</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-10-31T00:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328520#M57780</link>
      <description>&lt;P&gt;You'll still need to add 1,000,000 if that's what you need, but something like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$desktop/1T.jmp" );
filename = Save Text File(
	"$temp/deleteme.blk",
	Matrix To Blob( dt:code &amp;lt;&amp;lt; getvalues, "int", 4, "little" )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Anyone following along:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;the LoadTextFile and SaveTextFile functions normally work with character string text data and will possibly change the CRLF endings, add UNICODE Byte Order Mark, and can't deal with the ASCII NUL character. But, when used with JMP's BLOB type, the file is read/written with just the binary data.&lt;/LI&gt;&lt;LI&gt;BlobToMatrix and MatrixToBlob are inverse functions. They treat all the array elements or all the blob elements as 1, 2, 4, or 8 byte chunks. They also can make the array elements (which are always double precision 8 byte numbers) be signed or unsigned integers or floating point numbers in the blob. And they can handle big- vs little-endian representations in the blob. And BlobToMatrix has an extra argument to make multiple columns in the matrix.&lt;/LI&gt;&lt;LI&gt;You might want to use BlobPeek to deal with sections of the binary data that are not uniform chunk sizes, and the || concatenate operator to join blobs back together.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 14:53:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328520#M57780</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2020-10-31T14:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328606#M57792</link>
      <description>&lt;P&gt;Thank Craige!&lt;/P&gt;&lt;P&gt;&lt;SPAN class="transSent"&gt;That will do.&lt;/SPAN&gt;&lt;SPAN class="transSent"&gt;It can be done directly with JSL in the future.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="transSent"&gt;I tried: the specific data still needs +1000000.&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class="src"&gt;The BLK file is read by other software.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="transSent"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-11-01_07-36-52.png" style="width: 202px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27963i6A7BFFA932DB4EEC/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-11-01_07-36-52.png" alt="2020-11-01_07-36-52.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Oct 2020 23:49:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328606#M57792</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-10-31T23:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: How can JSL modify data in a table directly to a specified binary file?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328608#M57793</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;P class="src"&gt;JMP is powerful&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-11-01_10-30-10.png" style="width: 889px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27964i9CD5B609762CD8B2/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-11-01_10-30-10.png" alt="2020-11-01_10-30-10.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sun, 01 Nov 2020 02:31:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-JSL-modify-data-in-a-table-directly-to-a-specified/m-p/328608#M57793</guid>
      <dc:creator>lwx228</dc:creator>
      <dc:date>2020-11-01T02:31:50Z</dc:date>
    </item>
  </channel>
</rss>

