Skip to content

Stata command for checking best practices in a SurveyCTO xlsform

License

Notifications You must be signed in to change notification settings

PovertyAction/ipacheckscto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a9f5f8c · Sep 26, 2023

History

38 Commits
Apr 24, 2021
Apr 26, 2021
Feb 3, 2021
Dec 4, 2018
Sep 26, 2023
Apr 26, 2021

Repository files navigation

CHECK SurveyCTO XLS Forms

Overview

ipacheckscto is a Stata Module for checking SurveyCTO XLS forms for possible errors and best practices. Please note that this program does not check for issues that are already included in the SurveyCTO server debug program. Please ensure that you have succesfully uploaded your form onto the SurveyCTO server before running this program.

Installation

* ipacheckscto can be installed from github

net install ipacheckscto, all replace ///
	from("https://raw.githubusercontent.com/PovertyAction/ipacheckscto/master/ado")

Syntax

ipacheckscto using filename[, outfile(string) other(integer) dontknow(integer) refuse(integer) replace]

options
	outfile 		- Output results to excel filename
	other			- Specify integer value for other specify
	dontknow		- Specify integer value for don't know
	refuse			- Specify integer value for refuse to answer
	replace			- Overwrite existing outfile

Example Syntax

* Check XLS form without exporting issues
ipacheckscto using "Baseline Survey.xlsx"

* Check XLS form and export issues to excel
ipacheckscto using "Baseline Survey.xlsx", outfile("basline_survey_issues.xlsx") replace

Please report all bugs/feature request to the github issues page