synergy16
Active Member
- Joined
- Mar 17, 2016
- Messages
- 422
- Office Version
- 365
- Platform
- Windows
good morning all. after a bunch of calculations i narrow down a single row based on user choice and populate textboxes with related data. some of the cells are blank tho. is there a way to, perhaps with a loop, to tell the program if any of those cell locations are null to put a "N/A" in the textbox or do i have to a if/then statement for each one?
Code:
serialNumTB = Cells(stripPartRow, 7) partQtyTB = Cells(stripPartRow, 5)
partRevTB = Cells(stripPartRow, 4)
lotBatchTB = Cells(stripPartRow, 6)
jobProOrderTB = Cells(stripPartRow, 8)
supplierTB = Cells(stripPartRow, 9)
shipOutDateTB = Cells(stripPartRow, 10)
origPoDate = Cells(stripPartRow, 11)
expDockDateTB = Cells(stripPartRow, 12)
customerTB = Cells(stripPartRow, 2)
relatedPrtTB = Cells(stripPartRow, 13)
notesTB = Cells(stripPartRow, 14)