Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Refer to Data point in charts

Hi

How do you refer to certain data points within a certain expression in a chart.

Any help would be appreciated.

Thanks

1 Solution

Accepted Solutions
Not applicable
Author

Hi

Just to give an update I have used the following code which refers to the cells.











sub

chartloop



set

obj = ActiveDocument.GetSheetObject( "CH2" )

set

cp = obj.getproperties



For RowIter = 1 to obj.GetRowCount-1





set

msgbox (cell.Text)

cell = obj.GetCell(RowIter,1)



next

sub



View solution in original post

2 Replies
Not applicable
Author

Hi

Just to give an update I have used the following code which refers to the cells.











sub

chartloop



set

obj = ActiveDocument.GetSheetObject( "CH2" )

set

cp = obj.getproperties



For RowIter = 1 to obj.GetRowCount-1





set

msgbox (cell.Text)

cell = obj.GetCell(RowIter,1)



next

sub



Not applicable
Author

Hi

Just to give an update I have used the following code which refers to the cells.











sub

chartloop



set

obj = ActiveDocument.GetSheetObject( "CH2" )

set

cp = obj.getproperties



For RowIter = 1 to obj.GetRowCount-1





set

msgbox (cell.Text)

cell = obj.GetCell(RowIter,1)



next

sub