01-29-2018 08:19 AM
Hi,
i got a text channel with 50 rows and i would like to set all values to empty string "". I found function "DataBlInsertVal", but its not for text channels. So i found function "ChnAreaInsert0", this insert zeto value.
Can you please tell me which function i can use. I dont want to iterate through each row and set it, some function to specify start row, number of records AND THE VALUE could be good, im sure there is some, but i cant find it in the sea of fuctions.
Does this function exists?
Thanks
Solved! Go to Solution.
01-31-2018 10:55 AM
Hi Lukas,
If you have DIAdem 2015 or later, you can use the Channel.SetValues() command:
Set Group = Data.Root.ChannelGroups(1) Set Channel = Group.Channels(1) Call Channel.SetValues("", 1, 50, eValueBlockValueOverwrite)
Brad Turpin
DIAdem Product Support Engineer
National Instruments
02-01-2018 01:23 AM
Thank you for help Brad .)