I have used search query like this-
| savedsearch REPORT1
|chart values(COLUMN3) AS Status BY COLUMN2 PROCESS_ID| fillnull value="_"|table COLUMN2 VAL1 VAL2 VAL3 VAL4 VAL5 VAL6 VAL7......
and I got result like below,
here,the values are repeated within each cell(i.e;few cells are having multiple values say '_' & 'F') and few columns are null.
Is there any way to display single accurate values within each cell of the table.
Try something like this
|chart values(eval(if(COLUMN3="_",null(),COLUMN3))) AS Status BY COLUMN2 PROCESS_ID| fillnull value="_"|table COLUMN2 VAL1 VAL2 VAL3 VAL4 VAL5 VAL6 VAL7......
I tried this but got the same result.