1st time I've posted a question anywhere, so please excuse any lack of info or etiquette.
I have 2 worksheets, the first is a form to fill out, the second is an order history. The second sheet will capture all the data filled in on the first form. There's a list of job numbers on the order history in column A. I've found a way to get the sheet to assign the next free number to the form automatically, by getting it to look for the next blank cell in column B and returning the values (job number) in column A. I now need to get the data to transfer from the 1st worksheeet (the form) and copy the values to the row in the order history which matches that job number.
For example, the first worksheet is titled "JOB TICKET" and has data in B1, B3, H1, A7, B7, C7, E7, F7. H7 is populated with the following: formula =(INDEX(JOBS!A:B,MATCH(TRUE,JOBS!B:B=0,0),1)). This looks for blank value in row B of the "JOBS" workbook and returns the job number from row A.
Once the form is filled in, I need a code to look up the job number in "JOBS" and put the data, as values, from B1, B3, H1 etc. into columns B,C,D etc. in the row where the same job number is in column A. Creating a job history in the "JOBS" speadsheet.
Hope all of this makes sense!
I have 2 worksheets, the first is a form to fill out, the second is an order history. The second sheet will capture all the data filled in on the first form. There's a list of job numbers on the order history in column A. I've found a way to get the sheet to assign the next free number to the form automatically, by getting it to look for the next blank cell in column B and returning the values (job number) in column A. I now need to get the data to transfer from the 1st worksheeet (the form) and copy the values to the row in the order history which matches that job number.
For example, the first worksheet is titled "JOB TICKET" and has data in B1, B3, H1, A7, B7, C7, E7, F7. H7 is populated with the following: formula =(INDEX(JOBS!A:B,MATCH(TRUE,JOBS!B:B=0,0),1)). This looks for blank value in row B of the "JOBS" workbook and returns the job number from row A.
Once the form is filled in, I need a code to look up the job number in "JOBS" and put the data, as values, from B1, B3, H1 etc. into columns B,C,D etc. in the row where the same job number is in column A. Creating a job history in the "JOBS" speadsheet.
Hope all of this makes sense!