<?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 如何根据用户输入的值自动的改变制表平台里的合格率？ in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/%E5%A6%82%E4%BD%95%E6%A0%B9%E6%8D%AE%E7%94%A8%E6%88%B7%E8%BE%93%E5%85%A5%E7%9A%84%E5%80%BC%E8%87%AA%E5%8A%A8%E7%9A%84%E6%94%B9%E5%8F%98%E5%88%B6%E8%A1%A8%E5%B9%B3%E5%8F%B0%E9%87%8C%E7%9A%84%E5%90%88%E6%A0%BC%E7%8E%87/m-p/600184#M80366</link>
    <description>&lt;P&gt;谢谢各位大佬，我是一个新手，求问，如何把用户输入的比较符号，还有数值，纳入JSL计算，我用eval（parse（）），始终实现不了，谢谢。&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

New Window( "合格率报表",
	Data Filter Context Box(
		H List Box(
			dfsb = Current Data Table() &amp;lt;&amp;lt; Data Filter( Local ), 
			
			Platform(
				
				Current Data Table(),
				V List Box(
					Outline Box( "请输入所有参数规格限",
						Lineup Box( N Col( 3 ), Spacing( 5 ),
							Panel Box( "age",
								Lineup Box( N Col( 3 ), Spacing( 5 ),
									Text Box( "upper " ),
									dluf = Combo Box( {"&amp;lt;=", "&amp;lt;"} ),
									dlu = Number Edit Box(15),
									Text Box( "lower " ),
									dlbf = Combo Box( {"&amp;gt;=", "&amp;gt;"} ),
									dlb = Number Edit Box(-3)
								)
							),
							Panel Box( "height",
								Lineup Box( N Col( 3 ), Spacing( 5 ),
									Text Box( "upper " ),
									dauf = Combo Box( {"&amp;lt;=", "&amp;lt;"} ),
									dau = Number Edit Box(),
									Text Box( "lower " ),
									dabf = Combo Box( {"&amp;gt;=", "&amp;gt;"} ),
									dab = Number Edit Box()
								)
							),
							Panel Box( "weight",
								Lineup Box( N Col( 3 ), Spacing( 5 ),
									Text Box( "upper " ),
									dbuf = Combo Box( {"&amp;lt;=", "&amp;lt;"} ),
									dbu = Number Edit Box(),
									Text Box( "lower " ),
									dbbf = Combo Box( {"&amp;gt;=", "&amp;gt;"} ),
									dbb = Number Edit Box()
								)
							),
							Button Box( "确定", 
							          //获取规格限数字
								ageu = dlu &amp;lt;&amp;lt; get;
								agel = dlb &amp;lt;&amp;lt; get;
								heiu = dau &amp;lt;&amp;lt; get;
								heil = dab &amp;lt;&amp;lt; get;
								weiu = dbu &amp;lt;&amp;lt; get;
								weil = dbb &amp;lt;&amp;lt; get;
							          //获取规格限数字是否包含
								aguf = ((dluf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								aglf = ((dlbf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								heuf = ((dauf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								helf = ((dabf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								weuf = ((dbuf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								welf = ((dbbf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
							)
						)
					),
						dt &amp;lt;&amp;lt; Tabulate(
						Set Format(
							Mean(
								:Name( "age" )(6, "Best"),
								:Name( "height" )(6, "Best"),
								:Name( "weight")(6, "Best"), 
		
			                    Analysis Columns(									
									Transform Column( "age rate", eval(parse("if(:age"||aglf|| char(agel)|| ":age"||aguf||char(ageu)||",1,0)")) ,  
			
				Format( 9, 2, "Percent" )
								)),
								
								Analysis Columns(
									Transform Column( "height rate", Formula( eval(parse("if(:height"||helf|| char(heil)|| ":height"||heuf||char(heiu)||",1,0)")) ) ), 
				//强行修改格式
									Format( 9, 2, "Percent" )
								),
								Analysis Columns( Transform Column( "weight rate", Formula( eval(parse("if(:weight"||welf|| char(weil)|| ":weight"||weuf||char(weiu)||",1,0)")) ) ), Format( 9, 2, "Percent" ) )
							),
							N( 9, "Best" )
						),
						Add Table(
							Column Table(
			//具体固定统计列
								Analysis Columns( :Name( "age" ), :Name( "weight" ), :Name( "height" ) ),
								Statistics( Mean, Range )
							), 
		//调整样本量列的实际位置
							Column Table( Statistics( N ) ),
							column table(Analysis Columns(
									Transform Column( "rate age", Formula( eval(parse("if(:age"||aguf|| char(agel)|| ":age"||aguf||char(ageu)||",1,0)"))) ) ),Statistics( Mean )
								),
							Column Table(
								Analysis Columns( Transform Column( "height rate", Formula( eval(parse("if(:height"||helf|| char(heil)|| ":height"||heuf||char(heiu)||",1,0)")) ) ) ),
								Statistics( Mean )
							),
							Column Table(
								Analysis Columns( Transform Column( "weight rate", Formula( eval(parse("if(:weight"||welf|| char(weil)|| ":weight"||weuf||char(weiu)||",1,0)")) ) ) ),
								Statistics( Mean )
							), 
		//临时固定类别列，且可以通过拖拽进行增删
							Row Table( Grouping Columns( :sex ) )
						)
					);
					)))))&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 08 Jun 2023 16:36:43 GMT</pubDate>
    <dc:creator>lehaofeng</dc:creator>
    <dc:date>2023-06-08T16:36:43Z</dc:date>
    <item>
      <title>如何根据用户输入的值自动的改变制表平台里的合格率？</title>
      <link>https://community.jmp.com/t5/Discussions/%E5%A6%82%E4%BD%95%E6%A0%B9%E6%8D%AE%E7%94%A8%E6%88%B7%E8%BE%93%E5%85%A5%E7%9A%84%E5%80%BC%E8%87%AA%E5%8A%A8%E7%9A%84%E6%94%B9%E5%8F%98%E5%88%B6%E8%A1%A8%E5%B9%B3%E5%8F%B0%E9%87%8C%E7%9A%84%E5%90%88%E6%A0%BC%E7%8E%87/m-p/600184#M80366</link>
      <description>&lt;P&gt;谢谢各位大佬，我是一个新手，求问，如何把用户输入的比较符号，还有数值，纳入JSL计算，我用eval（parse（）），始终实现不了，谢谢。&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

New Window( "合格率报表",
	Data Filter Context Box(
		H List Box(
			dfsb = Current Data Table() &amp;lt;&amp;lt; Data Filter( Local ), 
			
			Platform(
				
				Current Data Table(),
				V List Box(
					Outline Box( "请输入所有参数规格限",
						Lineup Box( N Col( 3 ), Spacing( 5 ),
							Panel Box( "age",
								Lineup Box( N Col( 3 ), Spacing( 5 ),
									Text Box( "upper " ),
									dluf = Combo Box( {"&amp;lt;=", "&amp;lt;"} ),
									dlu = Number Edit Box(15),
									Text Box( "lower " ),
									dlbf = Combo Box( {"&amp;gt;=", "&amp;gt;"} ),
									dlb = Number Edit Box(-3)
								)
							),
							Panel Box( "height",
								Lineup Box( N Col( 3 ), Spacing( 5 ),
									Text Box( "upper " ),
									dauf = Combo Box( {"&amp;lt;=", "&amp;lt;"} ),
									dau = Number Edit Box(),
									Text Box( "lower " ),
									dabf = Combo Box( {"&amp;gt;=", "&amp;gt;"} ),
									dab = Number Edit Box()
								)
							),
							Panel Box( "weight",
								Lineup Box( N Col( 3 ), Spacing( 5 ),
									Text Box( "upper " ),
									dbuf = Combo Box( {"&amp;lt;=", "&amp;lt;"} ),
									dbu = Number Edit Box(),
									Text Box( "lower " ),
									dbbf = Combo Box( {"&amp;gt;=", "&amp;gt;"} ),
									dbb = Number Edit Box()
								)
							),
							Button Box( "确定", 
							          //获取规格限数字
								ageu = dlu &amp;lt;&amp;lt; get;
								agel = dlb &amp;lt;&amp;lt; get;
								heiu = dau &amp;lt;&amp;lt; get;
								heil = dab &amp;lt;&amp;lt; get;
								weiu = dbu &amp;lt;&amp;lt; get;
								weil = dbb &amp;lt;&amp;lt; get;
							          //获取规格限数字是否包含
								aguf = ((dluf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								aglf = ((dlbf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								heuf = ((dauf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								helf = ((dabf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								weuf = ((dbuf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								welf = ((dbbf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
							)
						)
					),
						dt &amp;lt;&amp;lt; Tabulate(
						Set Format(
							Mean(
								:Name( "age" )(6, "Best"),
								:Name( "height" )(6, "Best"),
								:Name( "weight")(6, "Best"), 
		
			                    Analysis Columns(									
									Transform Column( "age rate", eval(parse("if(:age"||aglf|| char(agel)|| ":age"||aguf||char(ageu)||",1,0)")) ,  
			
				Format( 9, 2, "Percent" )
								)),
								
								Analysis Columns(
									Transform Column( "height rate", Formula( eval(parse("if(:height"||helf|| char(heil)|| ":height"||heuf||char(heiu)||",1,0)")) ) ), 
				//强行修改格式
									Format( 9, 2, "Percent" )
								),
								Analysis Columns( Transform Column( "weight rate", Formula( eval(parse("if(:weight"||welf|| char(weil)|| ":weight"||weuf||char(weiu)||",1,0)")) ) ), Format( 9, 2, "Percent" ) )
							),
							N( 9, "Best" )
						),
						Add Table(
							Column Table(
			//具体固定统计列
								Analysis Columns( :Name( "age" ), :Name( "weight" ), :Name( "height" ) ),
								Statistics( Mean, Range )
							), 
		//调整样本量列的实际位置
							Column Table( Statistics( N ) ),
							column table(Analysis Columns(
									Transform Column( "rate age", Formula( eval(parse("if(:age"||aguf|| char(agel)|| ":age"||aguf||char(ageu)||",1,0)"))) ) ),Statistics( Mean )
								),
							Column Table(
								Analysis Columns( Transform Column( "height rate", Formula( eval(parse("if(:height"||helf|| char(heil)|| ":height"||heuf||char(heiu)||",1,0)")) ) ) ),
								Statistics( Mean )
							),
							Column Table(
								Analysis Columns( Transform Column( "weight rate", Formula( eval(parse("if(:weight"||welf|| char(weil)|| ":weight"||weuf||char(weiu)||",1,0)")) ) ) ),
								Statistics( Mean )
							), 
		//临时固定类别列，且可以通过拖拽进行增删
							Row Table( Grouping Columns( :sex ) )
						)
					);
					)))))&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:36:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/%E5%A6%82%E4%BD%95%E6%A0%B9%E6%8D%AE%E7%94%A8%E6%88%B7%E8%BE%93%E5%85%A5%E7%9A%84%E5%80%BC%E8%87%AA%E5%8A%A8%E7%9A%84%E6%94%B9%E5%8F%98%E5%88%B6%E8%A1%A8%E5%B9%B3%E5%8F%B0%E9%87%8C%E7%9A%84%E5%90%88%E6%A0%BC%E7%8E%87/m-p/600184#M80366</guid>
      <dc:creator>lehaofeng</dc:creator>
      <dc:date>2023-06-08T16:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: 如何根据用户输入的值自动的改变制表平台里的合格率？</title>
      <link>https://community.jmp.com/t5/Discussions/%E5%A6%82%E4%BD%95%E6%A0%B9%E6%8D%AE%E7%94%A8%E6%88%B7%E8%BE%93%E5%85%A5%E7%9A%84%E5%80%BC%E8%87%AA%E5%8A%A8%E7%9A%84%E6%94%B9%E5%8F%98%E5%88%B6%E8%A1%A8%E5%B9%B3%E5%8F%B0%E9%87%8C%E7%9A%84%E5%90%88%E6%A0%BC%E7%8E%87/m-p/603313#M80647</link>
      <description>&lt;P&gt;There are several approaches. The following is an example that uses the eval insert function.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JSL-Cookbook-Archived/Insert-one-expression-into-another-using-Eval-Insert-Eval-Expr/ta-p/48998" target="_blank" rel="noopener"&gt;This&lt;/A&gt; page is also helpful to understand expression.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

create tabulate = Expr(
	Parse(
		Eval Insert(
			"\[
	tabulate box = dt &amp;lt;&amp;lt; Tabulate(
		Set Format(
			Mean(
				:Name( "age" )(6, "Best"),
				:Name( "height" )(6, "Best"),
				:Name( "weight" )(6, "Best"), 
  
				Analysis Columns(
					Transform Column(
						"age rate",
						Formula ( if(:age ^aglf^ ^agel^ &amp;amp; :age ^aguf^ ^ageu^ ,1,0) ),  
   
						Format( 9, 2, "Percent" )
					)
				), 
        
				Analysis Columns(
					Transform Column(
						"height rate",
						Formula(  if(:height ^helf^ ^heil^ &amp;amp; :height ^heuf^ ^heiu^ ,1,0) )
					), 
    //强行修改格式
					Format( 9, 2, "Percent" )
				),
				Analysis Columns(
					Transform Column(
						"weight rate",
						Formula(  if(:weight ^welf^ ^weil^ &amp;amp; :weight ^weuf^ ^weiu^ ,1,0) ) 
					),
					Format( 9, 2, "Percent" )
				)
			),
			N( 9, "Best" )
		),
		Add Table(
			Column Table(
   //具体固定统计列
				Analysis Columns( :Name( "age" ), :Name( "weight" ), :Name( "height" ) ),
				Statistics( Mean, Range )
			), 
  //调整样本量列的实际位置
			Column Table( Statistics( N ) ),
			column table(
				Analysis Columns(
					Transform Column(
						"rate age",
						Formula(  if(:age ^aguf^ ^agel^ &amp;amp; :age ^aguf^ ^ageu^ ,1,0) ) 
					)
				),
				Statistics( Mean )
			),
			Column Table(
				Analysis Columns(
					Transform Column(
						"height rate",
						Formula(  if(:height ^helf^ ^heil^ &amp;amp; :height ^heuf^ ^heiu^ ,1,0) ) 
					)
				),
				Statistics( Mean )
			),
			Column Table(
				Analysis Columns(
					Transform Column(
						"weight rate",
						Formula( if(:weight ^welf^ ^weil^ &amp;amp; :weight ^weuf^ ^weiu^ ,1,0) ) 
					)
				),
				Statistics( Mean )
			), 
  //临时固定类别列，且可以通过拖拽进行增删
			Row Table( Grouping Columns( :sex ) )
		)
	)
]\"
		)
	)
);

nw = New Window( "合格率报表",
	Data Filter Context Box(
		H List Box(
			dfsb = Current Data Table() &amp;lt;&amp;lt; Data Filter( Local ), 
   
			Platform(
    
				Current Data Table(),
				V List Box(
					Outline Box( "请输入所有参数规格限",
						Lineup Box( N Col( 3 ), Spacing( 5 ),
							Panel Box( "age",
								Lineup Box( N Col( 3 ), Spacing( 5 ),
									Text Box( "upper " ),
									dluf = Combo Box( {"&amp;lt;=", "&amp;lt;"} ),
									dlu = Number Edit Box( 15 ),
									Text Box( "lower " ),
									dlbf = Combo Box( {"&amp;gt;=", "&amp;gt;"} ),
									dlb = Number Edit Box( -3 )
								)
							),
							Panel Box( "height",
								Lineup Box( N Col( 3 ), Spacing( 5 ),
									Text Box( "upper " ),
									dauf = Combo Box( {"&amp;lt;=", "&amp;lt;"} ),
									dau = Number Edit Box( 15 ),
									Text Box( "lower " ),
									dabf = Combo Box( {"&amp;gt;=", "&amp;gt;"} ),
									dab = Number Edit Box( 1 )
								)
							),
							Panel Box( "weight",
								Lineup Box( N Col( 3 ), Spacing( 5 ),
									Text Box( "upper " ),
									dbuf = Combo Box( {"&amp;lt;=", "&amp;lt;"} ),
									dbu = Number Edit Box( 15 ),
									Text Box( "lower " ),
									dbbf = Combo Box( {"&amp;gt;=", "&amp;gt;"} ),
									dbb = Number Edit Box( 1 )
								)
							),
							Button Box( "确定", 
                 //获取规格限数字
								ageu = dlu &amp;lt;&amp;lt; get;
								agel = dlb &amp;lt;&amp;lt; get;
								heiu = dau &amp;lt;&amp;lt; get;
								heil = dab &amp;lt;&amp;lt; get;
								weiu = dbu &amp;lt;&amp;lt; get;
								weil = dbb &amp;lt;&amp;lt; get;
                 //获取规格限数字是否包含
								aguf = ((dluf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								aglf = ((dlbf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								heuf = ((dauf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								helf = ((dabf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								weuf = ((dbuf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								welf = ((dbbf &amp;lt;&amp;lt; XPath( "//ComboBox" )) &amp;lt;&amp;lt; get selected)[1];
								Try( tabulate box &amp;lt;&amp;lt; delete );
								tabulate &amp;lt;&amp;lt; append( Eval( create tabulate ) );
							)
						)
					), 
//
					tabulate = V List Box();
//
				)
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Feb 2023 04:01:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/%E5%A6%82%E4%BD%95%E6%A0%B9%E6%8D%AE%E7%94%A8%E6%88%B7%E8%BE%93%E5%85%A5%E7%9A%84%E5%80%BC%E8%87%AA%E5%8A%A8%E7%9A%84%E6%94%B9%E5%8F%98%E5%88%B6%E8%A1%A8%E5%B9%B3%E5%8F%B0%E9%87%8C%E7%9A%84%E5%90%88%E6%A0%BC%E7%8E%87/m-p/603313#M80647</guid>
      <dc:creator>yuichi_katsumur</dc:creator>
      <dc:date>2023-02-21T04:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: 如何根据用户输入的值自动的改变制表平台里的合格率？</title>
      <link>https://community.jmp.com/t5/Discussions/%E5%A6%82%E4%BD%95%E6%A0%B9%E6%8D%AE%E7%94%A8%E6%88%B7%E8%BE%93%E5%85%A5%E7%9A%84%E5%80%BC%E8%87%AA%E5%8A%A8%E7%9A%84%E6%94%B9%E5%8F%98%E5%88%B6%E8%A1%A8%E5%B9%B3%E5%8F%B0%E9%87%8C%E7%9A%84%E5%90%88%E6%A0%BC%E7%8E%87/m-p/606923#M80873</link>
      <description>&lt;P&gt;非常感谢，能够请教一下吗？为什么“||"要换成 “&amp;amp;”？&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 01:17:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/%E5%A6%82%E4%BD%95%E6%A0%B9%E6%8D%AE%E7%94%A8%E6%88%B7%E8%BE%93%E5%85%A5%E7%9A%84%E5%80%BC%E8%87%AA%E5%8A%A8%E7%9A%84%E6%94%B9%E5%8F%98%E5%88%B6%E8%A1%A8%E5%B9%B3%E5%8F%B0%E9%87%8C%E7%9A%84%E5%90%88%E6%A0%BC%E7%8E%87/m-p/606923#M80873</guid>
      <dc:creator>lehaofeng</dc:creator>
      <dc:date>2023-03-02T01:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: 如何根据用户输入的值自动的改变制表平台里的合格率？</title>
      <link>https://community.jmp.com/t5/Discussions/%E5%A6%82%E4%BD%95%E6%A0%B9%E6%8D%AE%E7%94%A8%E6%88%B7%E8%BE%93%E5%85%A5%E7%9A%84%E5%80%BC%E8%87%AA%E5%8A%A8%E7%9A%84%E6%94%B9%E5%8F%98%E5%88%B6%E8%A1%A8%E5%B9%B3%E5%8F%B0%E9%87%8C%E7%9A%84%E5%90%88%E6%A0%BC%E7%8E%87/m-p/606956#M80875</link>
      <description>&lt;P&gt;It seems that your orginal formula is like this "If(:age &amp;gt;= 8:age &amp;lt; 20, 1, 0);".&lt;BR /&gt;I thought you needed an and operator in the formula. "If(:age &amp;gt;= 8 &amp;amp; :age &amp;lt; 20, 1, 0);".&lt;/P&gt;
&lt;P&gt;If you use the eval insert function, you don't need to add "||" in this example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;aglf = "&amp;gt;=";
agel = 8;
aguf = "&amp;lt;";
ageu = 20;

example1 = eval insert("if(:age ^aglf^ ^agel^ &amp;amp; :age ^aguf^ ^ageu^ ,1,0)");
Show( example1 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Mar 2023 02:21:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/%E5%A6%82%E4%BD%95%E6%A0%B9%E6%8D%AE%E7%94%A8%E6%88%B7%E8%BE%93%E5%85%A5%E7%9A%84%E5%80%BC%E8%87%AA%E5%8A%A8%E7%9A%84%E6%94%B9%E5%8F%98%E5%88%B6%E8%A1%A8%E5%B9%B3%E5%8F%B0%E9%87%8C%E7%9A%84%E5%90%88%E6%A0%BC%E7%8E%87/m-p/606956#M80875</guid>
      <dc:creator>yuichi_katsumur</dc:creator>
      <dc:date>2023-03-02T02:21:50Z</dc:date>
    </item>
  </channel>
</rss>

