Script to delete rows
Hello,
I am trying to delete dept Tech and Sub dept C1 from Corp. I wrote the script:
|Department::Dept|.items.each {
if (|Department|.getSelection(it, |Department::Tech|).value.equals(“Tech”)) /*Trying to delete the Tech Dept*/
it.delete()
}
|Department::Dept|.items.each {
if (|Department|.getSelection(it, |Department::Corp|).value.equals(“C1”)) /* Trying to delete the C1 Sub Dept within Corp*/
it.delete()
}
But its giving me an error. what am I missing?
shrishank Answered question April 1, 2019
Thank you. Simplest A-Scripts works