02-25-2011 10:31 AM
Hi all-
My question is basic, but I can't seem to find the answer in any of the forums or help windows.
Is there a way to store a variable into a particular row and cell number?For example, if i have a channel named [1]/ChannelB and the following:
Dim A
A= 12
I want to store the value of 12 into row 7 of [1]/ChannelB... Is there a method for doing this?
02-27-2011 11:14 PM
Hello,
You can access individual cells in DIAdem with the ChDX variable.
For instance, to store the value of A in row 7 of [1]/ChannelB you'd do this:
Dim A A = 12 chnval(7,"/ChannelB") = A
Hope this helps,
Otmar
02-28-2011 01:09 PM
Thanks very much. That's exactly what i needed to know.