Link to home
Start Free TrialLog in
Avatar of RWayneH
RWayneHFlag for United States of America

asked on

Not Identifying a blank cell value?

Why would the following not see a blank cell so I make the first blank row =  I5  and SetCurrentRow to that?
Any ideas?

			If i4 > 1 Then 'if SO row is >1 chg i5 SetCurrent row to the first blank.
				val_PurOrdNum = DataTable.Value("PurOrdNum","POItemInformation")
				Do While Not val_PurOrdNum = ""
					i5 = i5 + 1
					Datatable.GetSheet("POItemInformation").SetCurrentRow(i5)
				Loop
			End If
			Datatable.GetSheet("POItemInformation").SetCurrentRow(i5)

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Rgonzo1971
Rgonzo1971

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of RWayneH

ASKER

Not following this reply, perhaps you could suggest an edit?
Avatar of RWayneH

ASKER

I see it now, I was not checking the new value, when it moved down a row.  I just copied Ln2 inside the Do While after Ln5.  I did not even see that.  Thanks.
Avatar of RWayneH

ASKER

Thanks for the help.