I'm trying to remove 2 items from a list but I'm getting this error
"index must be number or list of numbers at row 1 in access or evaluation of 'List' , {/*###*/lst2}"
lst = As List((Associative Array( dt1:Name << get values ) << Get Keys))
lst2 = As List( {"NTC","PC"})
Remove( lst, {lst2})
lst = As List((Associative Array( dt1:Name << get values ) << Get Keys))
lst2 = As List( {"Pete","Clare"})
Remove( lst, lst2)
I've tried both there options and they both return an error. Where am I going wrong?