Posted on: 11/20/2014 6:54:21 PM | Views : 438

Hello everyone and thanks for your help in advance.  I am working on an application that generates a table of people's schedules.  It looks like this:
AppointmentTime        Bob       Tom       Bill 11/18/2014 8:30:00 AM  Available Available Available 11/18/2014 8:40:00 AM  Available Available Available 11/18/2014 8:50:00 AM  Continued Available Available 11/18/2014 9:00:00 AM  Available Available Available 11/18/2014 9:10:00 AM  Available Available Available
If you look at 8:50 AM for Bob, you will see it has the word continued, denoting it is a continuation from the 8:40 am.  What I want to do is to merge the cells over the two rows.  So I thought the best way to tackle this would be to loop through the table and where ever the value is continued, merge it with the cell above it.  So I tried ...

Go to the complete details ...