Enabling / disabling all tags with historical logging

Is there a way to turn on/off logging for all tags at once?

Hello,

I will check to see if there is a simple method to do this.

Hello,

This isn’t a simple way to do this with UI. However, there is a Basic Script you can employ functions that you can employ .

logcheck:
If test@ = 1 Then
Goto “logon”
Endif
If test@ = 0 Then
Goto “logoff”
Endif

Logon:
n% = GETSYS PRG,“NBTAGS”
i% = 0
//Browse all Tags
For i%=0 To n%-1
SETSYS TAG, “LOAD”, -i%
SETSYS TAG, “LogEnabled”, “1”
SETSYS TAG, “SAVE”
ENDIF
Next i%
End

Logoff:
n% = GETSYS PRG,“NBTAGS”
i% = 0
//Browse all Tags
For i%=0 To n%-1
SETSYS TAG, “LOAD”, -i%
SETSYS TAG, “LogEnabled”, “0”
SETSYS TAG, “SAVE”
ENDIF
Next i%
End

You can trigger this to an ONCHANGE boolean value Tag to disable/enable tagging as required.