1
Suggerimenti, idee e proposte per nuove funzionalità / Re:Add "exlcude" option in the replicate data options
« il: Aprile 20, 2023, 09:22:44 am »
I will add this option in the next v2 nightbuild.
Meanwhile you can get this goal using Replicate data with formula and with this piece of code (vb#):
Basically this will remove cSurvey's splay name pattern from To station (if required...remove it if this is not necessary) and remove the splay flag from replicate data's shots.
Meanwhile you can get this goal using Replicate data with formula and with this piece of code (vb#):
Codice: [Seleziona]
currentsegment.to=currentsegment.to.replace("(","_").replace(")","")
currentsegment.splay=false
Basically this will remove cSurvey's splay name pattern from To station (if required...remove it if this is not necessary) and remove the splay flag from replicate data's shots.