<?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>sc5 Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>sc5 Tracker</description>
    <pubDate>Sun, 19 Apr 2026 06:29:44 GMT</pubDate>
    <dc:date>2026-04-19T06:29:44Z</dc:date>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976497#M378356</link>
      <description>I'll try this, thank you! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;The data step is within a macro, but the macro variables created are also being used within the same macro function and failing to resolve.</description>
      <pubDate>Mon, 06 Oct 2025 23:01:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976497#M378356</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2025-10-06T23:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976201#M378278</link>
      <description>&lt;P&gt;Yup, all of that is fine.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I didn't want to include company name info, but it's basically in the format&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%include "d:\mydir1\mydir2\report_1.sas";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's a windows server.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;there's absolutely no issue with the path names. It successfully calls these scripts and starts running them, we have hundreds of jobs that run successfully in the same format, etc.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue is *after* these scripts are called, in the middle of each script's execution, *only* with macro variables not resolving, and *only* when run as part of the scheduled run.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for replying!:)&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 01:12:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976201#M378278</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2025-10-02T01:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976198#M378275</link>
      <description>&lt;P&gt;Thanks for replying!&lt;BR /&gt;&lt;BR /&gt;Every script has that piece of code in it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the main script is like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%include "mydir/report_1.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_2.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_3.sas";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and each of those scripts has the code snippet in them.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Oct 2025 00:56:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976198#M378275</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2025-10-02T00:56:00Z</dc:date>
    </item>
    <item>
      <title>Macro variable not resolved - ONLY in scheduled jobs. Works fine when manually run.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976195#M378273</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;&lt;BR /&gt;There's this bit of code in a few report scripts that works perfectly fine when run manually, but &lt;STRONG&gt;crashes&lt;/STRONG&gt; every other month &lt;STRONG&gt;when run as part of an automated scheduled job.&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This job calls multiple scripts sequentially one after another and this bit of code exists in each of those scripts. The first script works fine in the automated run, but all other scripts that follow fail. But again, running them all sequentially &lt;STRONG&gt;manually works&lt;/STRONG&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;data _null_;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;mth_start = intnx('month',today(),-1,'B');&lt;/DIV&gt;
&lt;DIV&gt;mth_end = intnx('month',today(),-1,'E');&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;call symput('mth_s', put(mth_start,date9.));&lt;/DIV&gt;
&lt;DIV&gt;call symput('mth_e', put(mth_end,date9.));&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;run;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;%put &amp;amp;mth_s;&lt;/DIV&gt;
&lt;DIV&gt;%put &amp;amp;mth_e;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;In the logs it says&amp;nbsp;WARNING: Apparent symbolic reference MTH_S not resolved.&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;And then when the macro variables are called later on in Proc SQL WHERE clauses, the scripts just fail.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Any advice on how I can fix this?&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;EDIT:&lt;/DIV&gt;
&lt;DIV&gt;
&lt;P&gt;Every script has that piece of code in it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the main script is like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%include "mydir/report_1.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_2.sas";&lt;/P&gt;
&lt;P&gt;%include "mydir/report_3.sas";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and each of those scripts has the code snippet in them.&amp;nbsp;&lt;/P&gt;
&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;/DIV&gt;</description>
      <pubDate>Thu, 02 Oct 2025 00:56:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-variable-not-resolved-ONLY-in-scheduled-jobs-Works-fine/m-p/976195#M378273</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2025-10-02T00:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Format cntlin numeric informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Format-cntlin-numeric-informat/m-p/935547#M367831</link>
      <description>Sorting worked, thank you! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Fri, 12 Jul 2024 05:59:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Format-cntlin-numeric-informat/m-p/935547#M367831</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-07-12T05:59:06Z</dc:date>
    </item>
    <item>
      <title>Proc Format cntlin numeric informat</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Format-cntlin-numeric-informat/m-p/935542#M367829</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have 2 datasets as below: 'insects' and 'test1'.&lt;/P&gt;
&lt;P&gt;Data test1 has thousands of rows with many columns including binary 1/0 ins_ant, ins_bee. ins_beetle.&lt;/P&gt;
&lt;P&gt;I want to calculate new columns 'total_weight' and 'total_id' based on the values in Data insects (sum of the corresponding "weight"s and "id"s.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using a proc format to do this, my code is below.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used type = 'I' because my input is a string (insect name) and outputs are numbers, and that's the informat type to use to the documentation here -&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/proc/p0owa4ftikc2ekn1q0rmpulg86cx.htm" target="_blank" rel="noopener"&gt;SAS Help Center: Results: PROC FORMAT&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But my final output dataset test2 has null values for the total_weight and total_id columns.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What am I doing wrong?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or please let me know if there's a simpler way to do this (without using proc format, but also without hardcoding anything like names of insects/weights/ids/number of insects etc.)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;code:&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;LI-CODE lang="sas"&gt;
data insects;
length insect $100.;
	insect='ant';
	weight = 10;
	id0 = 1;
	output;

	insect='beetle';
	weight = 20;
	id0 = 2;
	output;

	insect='bee';
	weight = 30;
	id0 = 3;
	output;
run;

data fmt;
	set insects;
	length start $100;
	start = upcase(strip(insect));

	retain type 'I';

	fmtname = 'weight';
	label = weight;
	output fmt;

	fmtname = 'id';
	label = id0;
	output fmt;

	keep start fmtname label type;
run;

proc format cntlin=fmt;
run;

data test1;
	
	patient = 4772;
	ins_ant = 1;
	ins_bee = 1;
	ins_beetle = 0;
	output;

	patient = 6792;
	ins_ant = 0;
	ins_bee = 1;
	ins_beetle = 1;
	output;
run;

data test2;
	set test1;
	total_weight = 0;
	total_id0 = 0;

	array ins_all {*} ins_: ; 
	
	do i_local = 1 to dim(ins_all);
		total_weight = total_weight + ( ins_all[i_local] * input(upcase(strip(scan(vname(ins_all[i_local]),2,'_'))),weight.) );
		total_id0 = total_id0 + ( ins_all[i_local] * input(upcase(strip(scan(vname(ins_all[i_local]),2,'_'))),id.) );
	end;

	drop i_local;
run;
&lt;/LI-CODE&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>Fri, 12 Jul 2024 05:54:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Format-cntlin-numeric-informat/m-p/935542#M367829</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-07-12T05:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Toggle between sum and average in a VA bar chart</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Toggle-between-sum-and-average-in-a-VA-bar-chart/m-p/932305#M18088</link>
      <description>&lt;P&gt;Thank you! I've got that, I just don't understand how to set up the actual y variable to be graphed? If I try creating a calculated field like "If parameter1 = "Average" then return avg(bygroup,yvar) else return sum(bygroup,yvar) it doesn't let me, it just underlines the "if" in red and doesn't let me create the field.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 20:59:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Toggle-between-sum-and-average-in-a-VA-bar-chart/m-p/932305#M18088</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-06-13T20:59:29Z</dc:date>
    </item>
    <item>
      <title>Toggle between sum and average in a VA bar chart</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Toggle-between-sum-and-average-in-a-VA-bar-chart/m-p/932106#M18085</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 bar chart of y vs x. The aggregation of the y variable is set as sum by default. I know I can change this in the data object, but is there a way to add a drop-down toggle for a report viewer to select whether they want to view the sum or average in a specific bar chart?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume we can do this with parameters, but I'm not sure how to set up the calculated field to make this work?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 10:18:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Toggle-between-sum-and-average-in-a-VA-bar-chart/m-p/932106#M18085</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-06-13T10:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression | dynamically update predicted values</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Linear-regression-dynamically-update-predicted-values/m-p/927508#M18001</link>
      <description>&lt;P&gt;Addition / update: Apparently we don't have access to add .js files to the webserver, we can only store files in the SAS content server, so this doesn't work.&lt;BR /&gt;&lt;BR /&gt;Is there any way at all to pass parameters to a SAS Job without JavaScript? I don't even necessarily need to pass filtered data through to the job, if I could just pass multi-value character parameters from a VA report to a SAS Job that would be great and would help a lot. Then I can just connect my list controls to those parameters.&lt;BR /&gt;&lt;BR /&gt;I know there are task prompt jobs like the 'Dynamic Prompts Using CARS Data' sample job provided that I can add to a DDC/Job Content object. If I use that method, I'd be looking for a way where those prompt parameters can either&lt;BR /&gt;a. simultaneously also act on other graphical / plot objects, or&lt;BR /&gt;b. get their values directly from defined parameters/list controls that are also linked to other chart objects.&lt;/P&gt;&lt;P&gt;Is that possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, would it be possible to see the 2 example reports from this link?&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Global-Forum-Proceedings/Modernizing-Scenario-Analysis-With-SAS-Viya-and-SAS-Visual/ta-p/726348#h_4630342503691618524678461" target="_blank" rel="noopener"&gt;Modernizing Scenario Analysis With SAS Viya and SAS Visual Analytics&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The 2nd one especially seems to be dynamically connecting parameters to a job like I want to, but the GitHub doesn't have any .js or HTML or JSON files and it's a bit difficult to see how it's actually interfacing with the report.&lt;/P&gt;&lt;P&gt;I also can't see the full list of parameters required and how they're set up to simultaneously work on the DDC and the visuals.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks a lot!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 15:08:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Linear-regression-dynamically-update-predicted-values/m-p/927508#M18001</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-05-08T15:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression | dynamically update predicted values</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Linear-regression-dynamically-update-predicted-values/m-p/927371#M17999</link>
      <description>&lt;P&gt;Thank you! I'm in touch with SAS and will see if we can sort it out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Meanwhile, I just wanted to confirm again - the only way to perform and display any kind of dynamic calculation from sliced data is via HTML job forms that call JavaScript functions?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wanted to check because our aim is to evaluate whether SAS VIYA Visual Analytics can be used as a GUI / interactive tool for data science / data analysis.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is the only way to do any kind of calculation / 1D regression on data in a visual report, that would mean we would need to learn JavaScript and HTML in addition to SAS (which we already use) to build dashboards, which we currently do with a little VBA / just formulas in Excel (example screenshots in my first reply).&lt;BR /&gt;e.g. as list controls are used to filter in a new subset of data, display predicted values and other derived calculations for that new subset of data updating in real time.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your time and patience!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 01:30:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Linear-regression-dynamically-update-predicted-values/m-p/927371#M17999</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-05-08T01:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression | dynamically update predicted values</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Linear-regression-dynamically-update-predicted-values/m-p/927115#M17997</link>
      <description>&lt;P&gt;These links are very helpful, thank you!&amp;nbsp;I'm currently on a trial version of SAS VIYA and I'm having some issues getting the examples to work, though.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;e.g. HelloSmallWorld.&lt;BR /&gt;When I try to replace &amp;lt;your.host.name&amp;gt; with the trial environment URL in the examples from those links, it can't find the link.&lt;/P&gt;&lt;P&gt;My trial url looks like "https://&amp;lt;trial.host&amp;gt;.my-trials.sas.com/".&lt;/P&gt;&lt;P&gt;I can only create folders under sasdrive -&amp;gt; users -&amp;gt; &amp;lt;email address&amp;gt; -&amp;gt; my folder.&lt;/P&gt;&lt;P&gt;So I've created a folder /users/&amp;lt;email address&amp;gt;/my folder/github where I've unzipped the examples in those links.&lt;/P&gt;&lt;P&gt;But when I try to replace&amp;nbsp; &amp;lt;your.host.name/github&amp;gt; in the html job form with "&amp;lt;trial.host&amp;gt;.my-trials.sas.com/users/&amp;lt;email address&amp;gt;/my folder/github" as instructed, and create my report, I get the error below in the DDC object.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there some other way I should be linking to files in the trial environment?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_0-1714958235227.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96193iC54251AA46F6BD5D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_0-1714958235227.png" alt="sc5_0-1714958235227.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/1484" target="_blank"&gt;@Renato_sas&lt;/A&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/61362"&gt;@Stu_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 01:23:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Linear-regression-dynamically-update-predicted-values/m-p/927115#M17997</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-05-06T01:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Linear regression | dynamically update predicted values</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Linear-regression-dynamically-update-predicted-values/m-p/926875#M17995</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/61362"&gt;@Stu_SAS&lt;/a&gt;, thank you for replying!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know if I can feed data from a report (filtered by list controls) as an input to a &lt;STRONG&gt;stored job/process&lt;/STRONG&gt; and display the outputs back in the report?&lt;/P&gt;&lt;P&gt;i.e. if I save a proc reg script / macro somewhere, can I then trigger it with a button in the report to run the regression on the data (as filtered at that instant in the report) and output the coefficients or predicted values to a dataset that can then be refreshed in the report?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;E.g. Below is an example in Excel where I select the slicers and the regression values change instantly in the table (2 screenshots)&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="sc5_2-1714726680195.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96145iB43059313EF6B9E4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_2-1714726680195.png" alt="sc5_2-1714726680195.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_3-1714726696616.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96146i96D846CBB678B0A1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_3-1714726696616.png" alt="sc5_3-1714726696616.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Excel this is pretty simple for 1-D regressions with the formulas = intercept() and =slope() on the data columns.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd be happy to try a more complex workaround in SAS VIYA if it's possible to store a script somewhere that can be made to act on data filtered at any moment in a report though, since I could then use this to do more complex analysis than what's possible in Excel.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 09:03:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Linear-regression-dynamically-update-predicted-values/m-p/926875#M17995</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-05-03T09:03:16Z</dc:date>
    </item>
    <item>
      <title>Linear regression | dynamically update predicted values</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Linear-regression-dynamically-update-predicted-values/m-p/926707#M17989</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a report (e.g. below) where a set of list controls control the data used in the scatter plot and a simple univariate linear regression.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The table below has some reference x values, and the "Predicted" column is derived from the linear regression (right click on object, "Derive predicted", and included as an item in the dataset, avg. aggregation.)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The linear regression itself updates whenever I select/deselect any item in the controls.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But the 'Predicted' values are the values from the initial version of the regression from which I created the field.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way to get the predicted y values from the regression updating dynamically and displayed in the report below? It should change whenever I change the list control selection.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just want the report viewer to be able to see the estimated y values at certain x values as they slice data in different combinations.&amp;nbsp;&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="sc5_0-1714609271858.png" style="width: 1032px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96114i85584094C6021CDA/image-dimensions/1032x378?v=v2" width="1032" height="378" role="button" title="sc5_0-1714609271858.png" alt="sc5_0-1714609271858.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 00:21:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Linear-regression-dynamically-update-predicted-values/m-p/926707#M17989</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-05-02T00:21:38Z</dc:date>
    </item>
    <item>
      <title>Dynamic Calculations from sliced data</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Calculations-from-sliced-data/m-p/926584#M17985</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way I can access the coefficients of a linear fit through a scatter plot and use it in calculations displayed in a report?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;E.g. I have 2 scatter plots, both controlled by a set of List controls. Every time I change the list selection, the data displayed and the fit lines on both plots change.&amp;nbsp;&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="sc5_0-1714544263047.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96087i6C8C6765C42E74B4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_0-1714544263047.png" alt="sc5_0-1714544263047.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_1-1714544262915.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96086iDD4C375597F17CE8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_1-1714544262915.png" alt="sc5_1-1714544262915.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there any way to display a table (example below) with the difference between the calculated y-values from both fit lines at certain x-values?&lt;/P&gt;&lt;P&gt;This table would dynamically update every time the list control selection changes, and it would be displayed on the main report page.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_2-1714544262977.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96085i0EFC016B0A575B0E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_2-1714544262977.png" alt="sc5_2-1714544262977.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Essentially, are the intercept, slope and R-square stored anywhere as objects I can reference? Like can I create a parameter as&amp;nbsp;@chartobject.slope or something?&lt;/P&gt;&lt;P&gt;I can see them when I maximise the chart object, but I don't see a way to display them dynamically updating as part of the main report page.&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="sc5_4-1714544444082.png" style="width: 651px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96089i119EF427AD091E0E/image-dimensions/651x82?v=v2" width="651" height="82" role="button" title="sc5_4-1714544444082.png" alt="sc5_4-1714544444082.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;In Excel this is easy with pivot tables. Slicers control charts connected to the pivot tables, and formulas =intercept(&amp;lt;y_col&amp;gt;,,x_col&amp;gt;), =slope(&amp;lt;y_col&amp;gt;,,x_col&amp;gt;) capture the trendline dynamically in cells anywhere I want.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I don't want to have to export a regression / run code / refresh the report / etc., the aim is just to do some quick interactive analysis in the report as we slice data on-the-fly.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 06:21:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Dynamic-Calculations-from-sliced-data/m-p/926584#M17985</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-05-01T06:21:20Z</dc:date>
    </item>
    <item>
      <title>VIYA Visual Analytics - Access Fit line coefficients</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VIYA-Visual-Analytics-Access-Fit-line-coefficients/m-p/926576#M17992</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way I can access the coefficients of a linear fit through a scatter plot and use it in calculations displayed in a report?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;E.g. I have 2 scatter plots, both controlled by a set of List controls. Every time I change the list selection, the data displayed and the fit lines on both plots change.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_0-1714541272010.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96083i0F67A9581285C089/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_0-1714541272010.png" alt="sc5_0-1714541272010.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_1-1714541272072.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96081iE116722A0A18F24F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_1-1714541272072.png" alt="sc5_1-1714541272072.png" /&gt;&lt;/span&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;is there any way to display a table (example below) with the difference between the calculated y-values from both fit lines at certain x-values?&lt;/P&gt;&lt;P&gt;This table would dynamically update every time the list control selection changes, and it would be displayed on the main report page.&lt;/P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_0-1714544015737.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96084i215B4E1FD5126D3C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_0-1714544015737.png" alt="sc5_0-1714544015737.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Essentially, are the intercept, slope and R-square stored anywhere as objects I can reference? Like can I create a parameter as&amp;nbsp;@chartobject.slope or something?&lt;/P&gt;&lt;P&gt;I can see them when I maximise the chart object, but I don't see a way to display them dynamically updating as part of the main report page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_2-1714541272005.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/96082i578117CC6707DCCE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_2-1714541272005.png" alt="sc5_2-1714541272005.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Excel this is easy with pivot tables. Slicers control charts connected to the pivot tables, and formulas =intercept(&amp;lt;y_col&amp;gt;,,x_col&amp;gt;), =slope(&amp;lt;y_col&amp;gt;,,x_col&amp;gt;) capture the trendline dynamically in cells anywhere I want.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I don't want to have to export a regression / run code / refresh the report / etc., the aim is just to do some quick interactive analysis in the report as we slice data on-the-fly.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 May 2024 06:14:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/VIYA-Visual-Analytics-Access-Fit-line-coefficients/m-p/926576#M17992</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-05-01T06:14:02Z</dc:date>
    </item>
    <item>
      <title>Access fit line coefficients</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Access-fit-line-coefficients/m-p/926307#M17978</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way I can access the coefficients of a linear fit through a scatter plot and use it in calculations displayed in a report?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;E.g. I have 2 scatter plots, both controlled by a set of List controls. Every time I change the list selection, the data displayed and the fit lines on both plots change.&amp;nbsp;&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="sc5_0-1714399253799.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/95992i67919041E41A8D2E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_0-1714399253799.png" alt="sc5_0-1714399253799.png" /&gt;&lt;/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_1-1714399277066.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/95993i656E93F6EBCAC97B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_1-1714399277066.png" alt="sc5_1-1714399277066.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;is there any way to display a table with the difference between the calculated y-values from both fit lines at certain x-values?&lt;/P&gt;&lt;P&gt;This table would dynamically update every time the list control selection changes, and it would be displayed on the main report page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Essentially, are the intercept, slope and R-square stored anywhere as objects I can reference? Like can I create a parameter as&amp;nbsp;@chartobject.slope or something?&lt;/P&gt;&lt;P&gt;I can see them when I maximise the chart object, but I don't see a way to display them dynamically updating as part of the main report page.&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="sc5_2-1714399699286.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/95994i4184301E3EC3D6DC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_2-1714399699286.png" alt="sc5_2-1714399699286.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Excel this is easy with pivot tables. Slicers control charts connected to the pivot tables, and formulas =intercept(&amp;lt;y_col&amp;gt;,,x_col&amp;gt;), =slope(&amp;lt;y_col&amp;gt;,,x_col&amp;gt;) capture the trendline dynamically in cells anywhere I want.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I don't want to have to export a regression / run code / refresh the report / etc., the aim is just to do some quick interactive analysis in the report as we slice data on-the-fly.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 14:29:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Access-fit-line-coefficients/m-p/926307#M17978</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2024-04-29T14:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Format Invalue regex hierarchy</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Format-Invalue-regex-hierarchy/m-p/873559#M345167</link>
      <description>Ooh ok I didn't know we could do that, thank you!</description>
      <pubDate>Wed, 03 May 2023 07:57:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Format-Invalue-regex-hierarchy/m-p/873559#M345167</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2023-05-03T07:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Format Invalue regex hierarchy</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Format-Invalue-regex-hierarchy/m-p/873558#M345166</link>
      <description>This seems to work, thanks a lot!</description>
      <pubDate>Wed, 03 May 2023 07:55:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Format-Invalue-regex-hierarchy/m-p/873558#M345166</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2023-05-03T07:55:53Z</dc:date>
    </item>
    <item>
      <title>Proc Format Invalue regex hierarchy</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Format-Invalue-regex-hierarchy/m-p/873547#M345161</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to use proc format with regex so that it sequentially evaluates conditions in the order given?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc format;
	invalue $Fr
	"s/(.*)(PELICA|UNDEREDS|GRASSHOP)(.*)/PELICA/i"	(regexpe) = _same_
	"s/(.*)(DEATHS|DT|CID)(.*)/DEATHS/i"	(regexpe) = _same_
	"s/(.*)(GRA)(.*)/LLL/i"	(regexpe) = _same_
	"s/(.*)(EMPRE)(.*)/EMPRESSS/i"	(regexpe) = _same_
	other = ''
	;
quit;
data fruit;
	length fruit $50. ;
	infile cards dsd dlm='&amp;gt;' truncover;
	input fruit ;
	cards;
	DEATHS
	PELICA
	PRIZEDE UNDEREDS/EMPRESSS
	GRASSHOP
	GRAMS
run;
data fruit2;
	set fruit;
	fruitset=input(fruit,$Fr.);
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The output is&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_0-1683097816287.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/83516i5A9D2E78AD01E6FC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_0-1683097816287.png" alt="sc5_0-1683097816287.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But I want the output to be:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sc5_1-1683097905691.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/83517i81F138A8DF5F40AA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sc5_1-1683097905691.png" alt="sc5_1-1683097905691.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;i.e. I want the conditions in proc format to be evaluated in the order given. The 3rd row matches the 1st regex condition (the word '&lt;CODE class=""&gt;UNDEREDS')&lt;/CODE&gt;, so the output should be PELICA, not EMPRESSS. I only want the output to be EMPRESSS if the conditions before are not met.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea how I can achieve this? Or is there another way I can format strings based on patterns in a specific order of preference? Worst case I'll resort to if-then conditions, but I have a lot of columns to parse with a lot of conditions, and a huge dataset, so I'm trying to do it in a more modular/elegant way.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 07:21:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Format-Invalue-regex-hierarchy/m-p/873547#M345161</guid>
      <dc:creator>sc5</dc:creator>
      <dc:date>2023-05-03T07:21:08Z</dc:date>
    </item>
  </channel>
</rss>

