Hi All, I am New to this forum, but I am hoping can get a reply to my question fairly quickly. Requirement : 1) Import excel file present location into SAS dataset ( file name wave1) Note : Excel is refreshed on daily bases 2) Current SAS dataset is an exact replica of the Excel wave1. So if there are any columns missing in excel which was previously present for some reason , these columns will be missing from the SAS dataset too. However, Spotfire marks it as an invalid dataset since few columns are missing. To overcome this we have placed previous created SAS dataset in backup folder and using below code retain variable structure. After importing into excel file into SAS data set I am using below code data final; set new previous (obs=0); run; Above code work fine sometime and it will throw below error some time Error : Variable has been defined as both character and numeric. Please help me to resolve this error permanently . Thanks in advance .
... View more