Is there any way to suppress certain fields that are output from certain instructions from being saved in the data table?
For example, I use the wind vector instruction option 2 in my data table, and the output gives two more additional output measurement fields which I'm not interested in saving in the data table.
Thanks!
No. But you could try using an intermediate table to do the calculation and then pull what you want into your final data table.
Public WS
Public WD
DataTable(Scratch,True,5)
DataInterval(0,60,Min,0)
WindVector (1,WS,WD,IEEE4,0,0,0,2)
FieldNames("HWS,RWS,RWD,SWD")
EndTable
DataTable(Table1,True,-1)
DataInterval(0,60,Min,0)
Sample(1,Scratch.RWS(1,1),IEEE4)
Sample(1,Scratch.RWD(1,1),IEEE4)
EndTable
BeginProg
Scan(5,Sec,1,0)
PulseCount(WS,1,1,1,1,0.098,0)
BrHalf(WD,1,mV2500,1,1,1,2500,True,0,_60Hz,355,0)
CallTable(Scratch)
CallTable(Table1)
NextScan
EndProg