Assuming you simply want to skip rows where that column is null, change:
Set rs = CurrentDb.OpenRecordset("select fundname, folder from FundInfo", dbOpenSnapshot)
to:
Set rs = CurrentDb.OpenRecordset("select fundname, folder from FundInfo where folder is not null", dbOpenSnapshot)