0
스폿 파이어의 철필 스크립트를 사용하여 열을 제거/삭제하거나 숨기는 방법? 난으로했을 열을 추가스폿 파이어의 열 삭제/삭제 또는 숨기기
다음 :
`
curDT = Document.ActiveDataTableReference
cols = curDT.Columns
# targetCol = Document.Properties["myColumnSelection"]
#Create a new column that counts the comma delimiter
myExpression = '1+len(RXReplace([Cx],"([A-Za-z0-9]+)","","g"))'
myNewColName = cols.CreateUniqueName("NumElements")
cols.AddCalculatedColumn(myNewColName, myExpression)
`