Have you defined the variables in the appropriate section in WinCC?
' WINCC:TAGNAME_SECTION_START
Const TagNameInAction = "Dummy"
Const TagNameInAction = "Test"
' WINCC:TAGNAME_SECTION_END
-Joe
Hello Dandalf,
The correct method for comparing two sets of values that should be the same on a point-by-point basis is with a paired T-test. This can be accomplished in Excel through Tools-->Data Analysis. Comparing the two columns on an X-Y plot is very useful for flagging outliers, and for...
KevinNZ is right, it works with conditional formatting. Highlight the column you want formatted. Choose “Formula Is” and use =(MOD(ROW($A1),2)=0) as the formula.
macajm,
I'm not claiming this is the best way, but I have the following macro in my PersonalMacrosWorkbook.
Sub CenterAcrossSelection()
With Selection
.HorizontalAlignment = xlCenterAcrossSelection
.VerticalAlignment = xlBottom
.WrapText = False...