T O P I C R E V I E W |
kdsaransh |
Posted - 04/30/2015 : 01:38:29 AM Hello,
I have a small problem to solve.
I have many workbooks and i want to delete all but not a particular one. How can i do this.
in general, I just want to delete all the workbooks that i had imported.i don't want to delete those workbooks that i had created.
Thanks in advance.
Regards, Rajesh
|
2 L A T E S T R E P L I E S (Newest First) |
kdsaransh |
Posted - 05/01/2015 : 12:37:39 AM Hi, Thanks
Sorry, i think i messed up.
I just want to delete all workbooks but not a particular one.
Thanks |
JRoby |
Posted - 04/30/2015 : 4:48:19 PM Since imports create metadata storage containing the source filename and your 'created' books presumably do not, this script will delete all workbooks that DO have a stored filename:
doc -e W { str$ = page.info.system.import.filename$; if(str.GetLength() > 0) win -cd; }
|
|
|