fix: ordering mpe_selectbox data by the data values after selectbox_order
Release / Build-production-and-ng-test (push) Successful in 4m51s Details
Release / Build-and-test-development (push) Successful in 8m35s Details
Release / release (push) Successful in 7m2s Details

This commit is contained in:
zmaj 2024-02-06 18:39:47 +00:00
parent 347b0f9065
commit 2b54034973
2 changed files with 3 additions and 2 deletions

View File

@ -18,4 +18,4 @@ In any case, you must not make any such use of this software as to develop softw
UNLESS EXPRESSLY AGREED OTHERWISE, 4GL APPS PROVIDES THIS SOFTWARE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, AND IN NO EVENT AND UNDER NO LEGAL THEORY, SHALL 4GL APPS BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM USE OR INABILITY TO USE THIS SOFTWARE.
`
`

View File

@ -645,7 +645,8 @@ create table dqdata as
%dq_selects()
proc sort data=dqdata;
by base_col selectbox_order;
/* order by selectbox_order then the value */
by base_col selectbox_order rule_data;
run;
%mp_getmaxvarlengths(work.sasdata1,outds=maxvarlengths)