T tcpip Member Licensed User Longtime User Jun 16, 2017 #1 Hi All, I have a tableview with 4 standard columns. The size (in rows) may change from time to time. Is it possible to put the values of each column to four lists?? For example: Header: A | B | C | D Lines: 1 2 3 4 5 6 7 8 I want to place in lists the values as below list1: 1,5 list2: 2,6 list3: 3,7 list4: 4,8 Thanks
Hi All, I have a tableview with 4 standard columns. The size (in rows) may change from time to time. Is it possible to put the values of each column to four lists?? For example: Header: A | B | C | D Lines: 1 2 3 4 5 6 7 8 I want to place in lists the values as below list1: 1,5 list2: 2,6 list3: 3,7 list4: 4,8 Thanks
EnriqueGonzalez Expert Licensed User Longtime User Jun 16, 2017 #2 yeah, sounds easy. look at the attached zip Attachments tableviewList.zip 2 KB · Views: 291 Upvote 0
T tcpip Member Licensed User Longtime User Jun 16, 2017 #3 Thank you so much. I try a lot of things but i didn't know that i can do this: Dim l() As List ..... Thank you again!!!! Upvote 0
Thank you so much. I try a lot of things but i didn't know that i can do this: Dim l() As List ..... Thank you again!!!!
EnriqueGonzalez Expert Licensed User Longtime User Jun 16, 2017 #4 You are welcome! It is a nice trick nay? Upvote 0
T tcpip Member Licensed User Longtime User Jun 16, 2017 #5 Great yeah!!!!! just what i wanted!!!. Thanks again Upvote 0