<?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: Return &amp;quot;True&amp;quot; or &amp;quot;False&amp;quot; if multiple columns contain string in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/855323#M102644</link>
    <description>&lt;P&gt;I assume this is what you are looking for&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1742976340359.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74245i4C884AD0A0487F67/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_0-1742976340359.png" alt="jthi_0-1742976340359.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You have already been basically provided answer for this, pick "correct" "formula" (these do not evaluate dynamically) and add additional check for "hi"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = New Table("Untitled",
	Add Rows(3),
	New Column("Column 1", Character, "Nominal", Set Values({"hello", "bye", "bye"})),
	New Column("Column 2", Character, "Nominal", Set Values({"hello", "bye", "bye"})),
	New Column("Column 3", Character, "Nominal", Set Values({"hello", "hello", "bye"})),
	New Column("Column 4", Character, "Nominal", Set Values({"hello", "a hello a", "bye"})),
	New Column("Column 5", Character, "Nominal", Set Values({"hello", "bye", "bye"}), Set Display Width(75)),
	New Column("Column 6", Character, "Nominal", Set Values({"hello hello hi", "hi hi hi hi", "bye"}))
);

dt &amp;lt;&amp;lt; new column("C", numeric, continuous, formula(
	If(Row() == 1,
		dt = Current Data Table();
		rangelow = 1;
		rangehigh = 6;
	);
	res = Filter Each({val}, dt[Row(), Index(rangelow, rangehigh)], Contains(val, "hello") | Contains(val, "hi"));
	N Items(res);
));
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Mar 2025 08:07:08 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2025-03-26T08:07:08Z</dc:date>
    <item>
      <title>Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/474972#M71963</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to return "False" if any column data contains "hello" else return a "True"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kuanaunwei_0-1648740670624.png" style="width: 780px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41359i9346FC93967285E7/image-dimensions/780x63?v=v2" width="780" height="63" role="button" title="kuanaunwei_0-1648740670624.png" alt="kuanaunwei_0-1648740670624.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am only able to process 1 column with if, any ideas?&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:46:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/474972#M71963</guid>
      <dc:creator>kuanaunwei</dc:creator>
      <dc:date>2023-06-10T23:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/474988#M71964</link>
      <description>&lt;P&gt;Many ways of doing this. Do you need formula, is setting values enough, JSL or not, interactive solution?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is one possible formula, but I would remove it after it has been calculated once, as it won't re-evaluate in similar manner as formulas usually do (this might not be a problem in this case thou).&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If(N Items(Loc(Current Data Table()[Row(), 1::N Cols()], "hello")) &amp;gt; 0,
	"FALSE"
,
	"TRUE"
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1648741646405.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41360iC9400554C399D0FA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1648741646405.png" alt="jthi_0-1648741646405.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This script should give a little extra explanation, it won't create new column for you though. Open log and run this, you can also change Row() = 1 to Row() = 2 and so on, to see how it behaves on different rows&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = New Table("Untitled 9",
	Add Rows(3),
	New Column("Column 1", Character, "Nominal", Set Values({"hello", "bye", "bye"})),
	New Column("Column 2", Character, "Nominal", Set Values({"hello", "bye", "bye"})),
	New Column("Column 3", Character, "Nominal", Set Values({"hello", "bye", "bye"})),
	New Column("Column 4", Character, "Nominal", Set Values({"hello", "hello", "bye"})),
	New Column("Column 5", Character, "Nominal", Set Values({"hello", "bye", "bye"}), Set Display Width(75)),
	New Column("Column 6", Character, "Nominal", Set Values({"hello", "bye", "bye"}))
);

Row() = 1;
Show(Current Data Table()[Row(), 1::N Cols()]);
Show(Loc(Current Data Table()[Row(), 1::N Cols()], "hello"));
Show(N Items(Loc(Current Data Table()[Row(), 1::N Cols()], "hello")));
Show(N Items(Loc(Current Data Table()[Row(), 1::N Cols()], "hello")) &amp;gt; 0);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1648741895103.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41361iC5A691CD041F0A38/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1648741895103.png" alt="jthi_1-1648741895103.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&lt;/P&gt;
&lt;P&gt;Removed extra "," from the formula&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 17:15:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/474988#M71964</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-03-31T17:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/475013#M71966</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a set of data with few thousand rows but would need to post process the data with a jmp script. So far my script has filtered out all the noise. Just need to know how to implement the solution you provided&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 16:20:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/475013#M71966</guid>
      <dc:creator>kuanaunwei</dc:creator>
      <dc:date>2022-03-31T16:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/475014#M71967</link>
      <description>&lt;P&gt;In terms of excel, this is my formula:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=IF(COUNTIF(R21602:AC21602,"HELLO")&amp;gt;0,"FALSE","TRUE")&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 16:22:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/475014#M71967</guid>
      <dc:creator>kuanaunwei</dc:creator>
      <dc:date>2022-03-31T16:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/475024#M71969</link>
      <description>&lt;P&gt;&amp;nbsp;You would create new formula &lt;STRONG&gt;character&lt;/STRONG&gt; column &lt;A href="https://www.jmp.com/support/help/en/16.2/index.shtml#page/jmp/create-formulas-in-jmp.shtml#" target="_self"&gt;Create Formulas in JMP (jmp.com)&lt;/A&gt; as last column in the data table and copy paste the formula I provided. After that you could re-open the column properties by double clicking the column header and remove formula if you want to. If you have JMP16 enhanced log should give you script to perform this if it is needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had one extra "," in the earlier post (I will edit it out):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If(N Items(Loc(Current Data Table()[Row(), 1::N Cols()], "hello")) &amp;gt; 0,
	"FALSE"
,
	"TRUE"
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 Mar 2022 17:14:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/475024#M71969</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-03-31T17:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/475078#M71975</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried out the formula, but its only blank. Is there a way to do it as like excel&amp;nbsp;&lt;SPAN&gt;=IF(COUNTIF(R21602:AC21602,"HELLO")&amp;gt;0,"FALSE","TRUE"), where we can only target specific range of columns to check for "Hello"?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Formula:&amp;nbsp;&lt;/P&gt;&lt;P&gt;dt &amp;lt;&amp;lt; New Column("Scan_RESULT", Character, Nominal Formula(If(N Items(Loc(dt[Row(), 1::N Cols()], "hello")) &amp;gt; 0)),&lt;BR /&gt;"FALSE"&lt;BR /&gt;,&lt;BR /&gt;"TRUE"&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 23:54:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/475078#M71975</guid>
      <dc:creator>kuanaunwei</dc:creator>
      <dc:date>2022-03-31T23:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/475083#M71977</link>
      <description>&lt;P&gt;Here is my approach, which adds in the ability to set the range.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If( Row() == 1,
	dt = Current Data Table();
	rangelow = 2;
	rangehigh = 14;
);
If( Contains( dt[Row(), Index( rangelow, rangehigh )], "hello" ),
	"False",
	"True"
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I have attached a sample data table with the formula already embedded in the column.&amp;nbsp; I have also included&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;response in a new column called Scan_RESULT&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1648777071391.png" style="width: 942px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/41379iD1AB286B92DF343F/image-dimensions/942x139?v=v2" width="942" height="139" role="button" title="txnelson_0-1648777071391.png" alt="txnelson_0-1648777071391.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 01:38:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/475083#M71977</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-04-01T01:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/854598#M102624</link>
      <description>&lt;P&gt;What if I'm interested to get the number of times "hello" apears in this range of col's?&lt;/P&gt;
&lt;P&gt;And a another situation -&amp;nbsp; what if the word "hello" is part of the text in the cell in certain col's?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 17:02:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/854598#M102624</guid>
      <dc:creator>RMSEElephant848</dc:creator>
      <dc:date>2025-03-25T17:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/854676#M102628</link>
      <description>&lt;P&gt;1. You can use Loc to check for matches&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If(Row() == 1,
	dt = Current Data Table();
	rangelow = 1;
	rangehigh = 6;
);
N Items(Loc(dt[Row(), Index(rangelow, rangehigh)], "hello"));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;2. I assume you wish to know how many times 'hello' appears in that range. Loop + Contains or Substitute + Length are options&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If(Row() == 1,
	dt = Current Data Table();
	rangelow = 1;
	rangehigh = 6;
);
str = Concat Items(dt[Row(), Index(rangelow, rangehigh)], " ");
new_str = Substitute(str, "hello", "");
(Length(str) - Length(new_str)) / Length("hello")
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;If(Row() == 1,
	dt = Current Data Table();
	rangelow = 1;
	rangehigh = 6;
);
res = Filter Each({val}, dt[Row(), Index(rangelow, rangehigh)], Contains(val, "hello"));
N Items(res);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = New Table("Untitled",
	Add Rows(3),
	New Column("Column 1", Character, "Nominal", Set Values({"hello", "bye", "bye"})),
	New Column("Column 2", Character, "Nominal", Set Values({"hello", "bye", "bye"})),
	New Column("Column 3", Character, "Nominal", Set Values({"hello", "hello", "bye"})),
	New Column("Column 4", Character, "Nominal", Set Values({"hello", "a hello a", "bye"})),
	New Column("Column 5", Character, "Nominal", Set Values({"hello", "bye", "bye"}), Set Display Width(75)),
	New Column("Column 6", Character, "Nominal", Set Values({"hello", "bye", "bye"}))
);

dt &amp;lt;&amp;lt; new column("hellocount", numeric, continuous, formula(
If( Row() == 1,
	dt = Current Data Table();
	rangelow = 1;
	rangehigh = 6;
);
N Items(Loc(dt[Row(), Index(rangelow, rangehigh)], "hello"));
));

dt &amp;lt;&amp;lt; new column("hellocountwithin", numeric, continuous, formula(
	If(Row() == 1,
		dt = Current Data Table();
		rangelow = 1;
		rangehigh = 6;
	);
	str = Concat Items(dt[Row(), Index(rangelow, rangehigh)], " ");
	new_str = Substitute(str, "hello", "");
	(Length(str) - Length(new_str)) / Length("hello");
));

dt &amp;lt;&amp;lt; new column("hellocountwithin2", numeric, continuous, formula(
	If(Row() == 1,
		dt = Current Data Table();
		rangelow = 1;
		rangehigh = 6;
	);
	res = Filter Each({val}, dt[Row(), Index(rangelow, rangehigh)], Contains(val, "hello"));
	N Items(res);
));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;</description>
      <pubDate>Tue, 25 Mar 2025 18:11:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/854676#M102628</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-03-25T18:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/855311#M102643</link>
      <description>&lt;P data-start="0" data-end="94"&gt;Thanks a lot. The formula worked perfectly. However, I realized my data is a bit more complex.&lt;/P&gt;
&lt;P data-start="96" data-end="410" data-is-last-node="" data-is-only-node=""&gt;I have two target words, for example "hello" and "Hi". In some cells, "Hi" may appear two or three times, and in others, both "Hello" and "Hi" may be present. I need to count the number of cells that contain either word—each cell should be counted only once regardless of how many times the words appear within it.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 06:57:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/855311#M102643</guid>
      <dc:creator>RMSEElephant848</dc:creator>
      <dc:date>2025-03-26T06:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Return "True" or "False" if multiple columns contain string</title>
      <link>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/855323#M102644</link>
      <description>&lt;P&gt;I assume this is what you are looking for&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1742976340359.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74245i4C884AD0A0487F67/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_0-1742976340359.png" alt="jthi_0-1742976340359.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You have already been basically provided answer for this, pick "correct" "formula" (these do not evaluate dynamically) and add additional check for "hi"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = New Table("Untitled",
	Add Rows(3),
	New Column("Column 1", Character, "Nominal", Set Values({"hello", "bye", "bye"})),
	New Column("Column 2", Character, "Nominal", Set Values({"hello", "bye", "bye"})),
	New Column("Column 3", Character, "Nominal", Set Values({"hello", "hello", "bye"})),
	New Column("Column 4", Character, "Nominal", Set Values({"hello", "a hello a", "bye"})),
	New Column("Column 5", Character, "Nominal", Set Values({"hello", "bye", "bye"}), Set Display Width(75)),
	New Column("Column 6", Character, "Nominal", Set Values({"hello hello hi", "hi hi hi hi", "bye"}))
);

dt &amp;lt;&amp;lt; new column("C", numeric, continuous, formula(
	If(Row() == 1,
		dt = Current Data Table();
		rangelow = 1;
		rangehigh = 6;
	);
	res = Filter Each({val}, dt[Row(), Index(rangelow, rangehigh)], Contains(val, "hello") | Contains(val, "hi"));
	N Items(res);
));
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 08:07:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Return-quot-True-quot-or-quot-False-quot-if-multiple-columns/m-p/855323#M102644</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-03-26T08:07:08Z</dc:date>
    </item>
  </channel>
</rss>

