Excel N00b
July 4, 2007 5:14 AM
Subscribe
Excel: How can I get text to stick in the cells after it's been copied from another spreadsheet?
I built a purchase order workbook that copies the data over from the PO Data Entry Spreadsheet to a Master List of all the PO numbers. It works. I used formulae like =IF(B119=OrderNo, Date). But here is the problem: when I am done with PO #119 (for example) and I stary PO# 120, the 119 row of data on my Master List sheet goes back to FALSE because the formula is still there, linked to the PO Data Entry sheet. How can I make the data from 119 stick when I start 120 on the other sheet? Should I be using Nested IF Functions? If I do, how can I copy and paste the actual text in? Like:
=IF(B119=OrderNo, Date, IF(C118>0, "don't delete the text from that row", "damn it"))
posted by chuckdarwin to computers & internet (6 comments total)
What you need is a macro or a small VBA function that will copy the actual value of the order number into the next available cell in the Master List.
posted by yoz420 at 5:21 AM on July 4, 2007