Has anyone tried to import Kobotoolbox questionnaire result in XLXS form to SAS?
I have this macro to import, but somehow it keeps getting timeout
/*XLS IMPORT*/ %macro httpkobolong(name, link); filename target "&data.\&name..xlsx"; proc http method="get" url="&link." out=target timeout=600; run; %mend(); %let link_module=https://kobo.sid-indonesia.org/api/v2/assets/[AssetID]/export-settings/[export-setting UID]/data.xlsx; %httpkobolong(name_module,&link_module.);
I assume this one from kobo, that is being timeout, but maybe anyone has any experience in this.
Thanks in advance
SAS 9.4 on UNIX or Windows? If server-based, is the path defined in &data available on the server?
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.