My dataset has following variables: 'DATE', 'TIME', 'PRICE' etc. I want to change the variables names to user specified e.g. dAte, Price, timE etc. Tried the rename statement with & without modity statement but does not work. data have; set have; modify have; rename DATE = Date; rename TIME = timE; rename PRICE = Price; run; Log says dataset updated but variable name still remain the same case. NOTE: There were 2692 observations read from the data set have. NOTE: There were 2692 observations read from the data set have. NOTE: The data set have has been updated. There were 2692 observations rewritten, 0 observations added and 0 observations deleted. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds PS: I only want to change variable name no change required in the format of the observations. Thanks in advance.
... View more