Hi,
how can I access follwing values in the table interface.
I want to use the value of the 9th column cell in the first one to create a link.
But with
if i_x = 1.
...
endif.
I'm just able to access the current cell.
By the way, is there a possibility to add columns? How?
greetings form munich
Mike
Hi,
AFAIK the method Data_Cell is called seperately for every cell like (hard simplified !)
for i_y = 1 to table_height
for i_x to table_width
call Data_Cell (..., i_y, i_x, ...)
So you can't cells other than the current.
Adding columns by the Table-API is impossible too. A q&d idea : Create a "dummy"-column in your query with the BEx-Query-Designer and set the values in these cells by the API, but - you can only access to processed cell-values, there is no look-forward-functionality possible.
Bye
Ralf
Add a comment