DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

Can I store a value into a given row and channel?

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?

 

 

0 Kudos
Message 1 of 3
(3,192 Views)

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

Otmar D. Foehner
0 Kudos
Message 2 of 3
(3,170 Views)

Thanks very much. That's exactly what i needed to know.

0 Kudos
Message 3 of 3
(3,152 Views)