This application was working fine and then I added about 10 more fields to it and the "clear" code at the bottom is no longer working. I tried to debug and fix on my own but was unsuccessful. Could one of you take a look and fix this for me?
The input file holds the data that needs to be reformatted. The macro can be run by entering ctl/r. The output as tested is in the second workbook.
I need to have the duplicate SSN, Last, and First name cleared which is the code at the end of the macro. Let me know if you have questions. :-)
Pls correct my understanding:
You want to delete the rows where there is a duplicate in SSN, Last Name and First Name correct ?
My understanding of your macro it copies lines from the output file to the current file at the cell specified by destination cell.
Question: Your duplicate are from what block ? the block that exist in the Excel and the new block or ... ???
I don't want to delete the whole row. I just want the SSN, Last, and First name to appear once for each student. I figured out a formula in Excel that will do the trick but if you want to work on this and tweak the code for me I would use it instead since that is easier with it all being done in the macro. If I use the Delete Dup feature in Excel it also deletes data needed so it is of no help.
well this last loop will never clear anything as it point wrongly. let me fix it for you but hv to go out now will revert lateron ... stay tuned.
gowflow
Is this what you are looking for ?
Pls test it and let me know. I am sorry but I code in a simpler way and do not like these super fancy endless offests etc.. that sometimes takes ages to decode.
Well then the code from the beginning was wrong as when you run it, It put the new range in the Input workbook and not the output. Let me look at the whole thing and will revert. I do not like this ttype of coding altogether I will review it altogether and revert. I only looed at the last part as this is what you requested but seems it is writing in the wrong place. Will revert.
I understand completely why you don't like this code but I was trying to avoid having the input and output in different workbooks because the output is a report that will go to the Department of Education and i want to keep the Input in the original format. I could always write the output to another tab.
The input data has to be reformatted so there is one full line record per student and sub lines under the student that contain other lending or grant data.
Your mistaken !!! I hv no problem with multiple workbooks that's not the issue, the issue is the variable manipulation and the relying on default workbook which I do not like. If you noticed in the code posted I declared wsFm and wsTo to be respectively the FROM worksheet and the TO worksheet this way you can control the code and not the code controls you as sometimes by doing a select the focus changes and when you rely on default workbook you see yourself writing to the FROM where in fact you want to write to the TO !!!
You were also missing a major part which is the request to indicate the output file reason why it was writing to your FROM sheet and not to the TO sheet.
Hope your satissfied with the code and if any other issue you may need help with pls do not hesitate to put a link here and I will assist.
gowflow
Microsoft Excel
Microsoft Excel topics include formulas, formatting, VBA macros and user-defined functions, and everything else related to the spreadsheet user interface, including error messages.
ASKER