Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I was wondering if you can help me with the list updating issue I have.
Here is the issue, I have a list of four values that look like below.
[0] ("list1" ( "1" "2" ))
[1] ("list2" ( "11" "12" ))
[2] ("list3" ( "21" "22" ))
[3] ("list4" ( "31" "32" ))
I want to add the value "13" to "List2" so that the output looks like the list below.
[0] ("list1" ( "1" "2" ))
[1] ("list2" ( "11" "12" "13"))
[2] ("list3" ( "21" "22" ))
[3] ("list4" ( "31" "32" ))
If the input is to add "41" to "list5" then the output should look like the list below.
[0] ("list1" ( "1" "2" ))
[1] ("list2" ( "11" "12" ))
[2] ("list3" ( "21" "22" ))
[3] ("list4" ( "31" "32" ))
[4] ("list5" ( "41" ))
Let me know if you can help me with a sample code to do something like this.
Solved! Go to Solution.