cancel
Showing results for 
Search instead for 
Did you mean: 

SetGridValue()???

Former Member
0 Kudos

In a cross tab report, is there a method like gridvalueat() that allows you to set a grid value? say SetGridValue()?

Accepted Solutions (0)

Answers (1)

Answers (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi Marcus,

There isn't however, you set the value of a cell like this:

Let's say you're trying to set the value of the first cell (Row 1, Column1), then the code would be:

If CurrentColumnIndex = 0 AND CurrentRowIndex = 0 then

<value> else <value2>

Ofcourse, there are many ways to do this. What exactly are you trying to achieve?

-Abhilash