QRP
 
Loading...
Searching...
No Matches
ms_pov1dose.sas File Reference

This macro finds all index dates that meet a cumulative and/or current filled daily dose criteria. More...

Detailed Description

This macro finds all index dates that meet a cumulative and/or current filled daily dose criteria.

Program inputs
  • Dataset with eligible index dates.
  • Dataset with all claims.
Program outputs
  • Dataset with eligible index dates meeting the dose criteria.
  • Dataset with index dates not meeting the dose criteria.

Usage

  %ms_pov1dose(INFILE=_POV1&CohortId., 
               CLAIMFILE=_GroupIndex&CohortId.(keep=patid adate &RxSupVar. 
                                                    %if &mincumdose. ne . | (&maxcumdose. ne . and &cumdoseper. ne .) %then %do;
                                                       expiredt cumdose
                                                    %end;
                                                    %if &mincfdd. ne . | &maxcfdd. ne . %then %do;
                                                       strength &rxamtvar. 
                                                    %end; ),
               EXCLINDEXFILE=_DoseExcl&CohortId.,
               OUTFILE=_POV1&CohortId., 
               MINCUMDOSE=&mincumdose., 
               MAXCUMDOSE=&maxcumdose.,
               MINCFDD=&mincfdd.,
               MAXCFDD=&maxcfdd.,
               LOOKBACK=&cumdoseper.,
               RXSUPVAR=&rxsupvar.);
Parameters
[in]INFILEName of the dataset with eligible index dates.
[in]CLAIMFILEName of the dataset with all claims.
[in]EXCLINDEXFILEName of the dataset with index dates excluded due to not meeting criteria.
[out]OUTFILEName of the output dataset meeting the dose criteria.
[in]MINCUMDOSEMinimum prior cumulative dose.
[in]MAXCUMDOSEMaximum prior cumulative dose.
[in]MINCFDDMinimum current filled daily dose.
[in]MAXCFDDMaximum current filled daily dose.
[in]LOOKBACKNumber of days prior to index date to evaluate mincumdose/maxcumdose.
[in]RXSUPVARVariable holding dispensing RX Days Supply.

SAS Macros Dependencies

Note
Cumulative dose is evaluated in the window [-lookback, indexdate -1]
Author
Sentinel Coordinating Center (info@.nosp@m.sent.nosp@m.inels.nosp@m.yste.nosp@m.m.org)