/
RECIST Change

© 2025 IQVIA - All Rights Reserved

RECIST Change

Summary

Performs a calculation against a baseline value. It expects to be attached to an item containing a similar value. It looks up the baseline value according to parameters specified in the configuration. It retrieves the baseline form, grabs the value of interest, and compares it to that same value in the current form.

Formal Expression

Variables:

  • BASELINE_STUDY_EVENT = the name of the study event containing the baseline value

  • ITEM_NAME = the name of the item containing the value

var BASELINE_STUDY_EVENT = 'Visit 1'; var ITEM_NAME = 'LESSUM'; var ret = null; var BASELINE_STUDY_EVENT = 'Visit 1'; if (formJson.form.studyEventName !== BASELINE_STUDY_EVENT) { var baseForms = findFormData(BASELINE_STUDY_EVENT, formJson.form.name); if (baseForms !== null && baseForms.length === 1) { var baselineSum = findFirstItemValueByName(baseForms[0], ITEM_NAME); var thisFormSum = findFirstItemValueByName(formJson, ITEM_NAME); if (!isNaN(baselineSum) && !isNaN(thisFormSum)) { ret = Math.round(((Number(thisFormSum) * 100) / Number(baselineSum)) - 100) / 100; } } } return ret;

Related content

Pharmacy User Guides
Pharmacy User Guides
Read with this
Comparison to Baseline
Comparison to Baseline
More like this
Creating Methods and Edit Checks
Creating Methods and Edit Checks
Read with this
Return a Unique Incremental ID Number
Return a Unique Incremental ID Number
More like this
Data Quality Checks Dashboard Component
Data Quality Checks Dashboard Component
Read with this
Comparison of End of Study and AE Outcomes
Comparison of End of Study and AE Outcomes
More like this

Exported and Printed Copies Are Uncontrolled