In a previous programming session, I wrote the following format:
 
proc format;
	value class
	1 = 'No tests'
	2 = '1 to 3 tests'
	3 = '4 or more tests';
run;
Two questions:
1) How did this format get attached to the 8. general format? Now, when I create other variables and designate them as 8. format, I get the following error message:
ERROR: The format CLASS was not found or could not be loaded
2) How can I search for the CLASS format I created to delete it? It doesn't appear in my permanent or work libraries?
3) How can I change 8. back to a general numeric format?
 
Thank you.