Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
kunkumnaveen
Specialist
Specialist

how to remove unwanted row from the table

Hello All,

i was able to achieve my requirement partial ,i got struck at one point ,  i want my list box should reflect only on one column,and based up on that column the other column values has to display , i mean this is my table when no selection had made in the list boxscreen2.png

to achieve this requirement for each column expression i added supcat= except column 3  ( which mean selection made on the listbox will not reflect those column except 3rd column expression )


expressions i wrote for each column



current self eval: FirstSortedValue(distinct {<ROLE={'SELF_EVAL'},SUPCAT=,MaterialName=,Category=,Decision=, ENSTEHDAT = >}TOTAL_SCORE, -DATE_OF_REVIEW)


auditor current :FirstSortedValue(distinct {<ROLE={'EVAL'},MaterialName=,Category=,Decision=, ENSTEHDAT = >}TOTAL_SCORE, -DATE_OF_REVIEW)

previous self eval: FirstSortedValue(distinct {<ROLE={'SELF_EVAL'},SUPCAT=,MaterialName=,Category=,Decision=, ENSTEHDAT = >}TOTAL_SCORE, -DATE_OF_REVIEW,2)

previous current :FirstSortedValue(distinct {<ROLE={'EVAL'},SUPCAT=,MaterialName=,Category=,Decision=, ENSTEHDAT = >}TOTAL_SCORE, -DATE_OF_REVIEW,2)

then i got what i am looking screen1.png


but the problem is Arvind Timber supplier whose Auditor current score is 83 which come under B+ i dont  want that  entire  row to be displayed when i select rating A







1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

Change all your expressions (excepct the second one) to something like this

if(Column(2)>0,FirstSortedValue(distinct {<ROLE={'SELF_EVAL'},SUPCAT=,MaterialName=,Category=,Decision=, ENSTEHDAT = >}TOTAL_SCORE, -DATE_OF_REVIEW))

View solution in original post

15 Replies
Chanty4u
MVP
MVP

hi,

chk in presentation tab hide column

kunkumnaveen
Specialist
Specialist
Author

HI,

I think u havent understand my requirement , i am looking how to hide the column i am looking to hide the row that to dynamic

kunkumnaveen
Specialist
Specialist
Author

HI,

I think u havent understand my requirement , i am not looking how to hide the column i am looking to hide the row that to dynamic

kunkumnaveen
Specialist
Specialist
Author

Any suggestion or help regarding this requirement  plz

kunkumnaveen
Specialist
Specialist
Author

Will it be ok if is use IF function, i mean

if(FirstSortedValue(distinct {<ROLE={'EVAL'},MaterialName=,Category=,Decision=, ENSTEHDAT = >}TOTAL_SCORE, -DATE_OF_REVIEW)='-','-',FirstSortedValue(distinct {<ROLE={'SELF_EVAL'},SUPCAT=,MaterialName=,Category=,Decision=, ENSTEHDAT = >}TOTAL_SCORE, -DATE_OF_REVIEW))

which means if cloumn3 is null then rest column will be null,

then in table properties  if i enable  Suppress null values,i think the the row will be removed,

but the problem i am not able to write a proper if expression,can any one help how to this expression

sunny_talwar

Naveen - Would you be able to share your qvw file?

kunkumnaveen
Specialist
Specialist
Author

plz just give me 5 min i   will do for you

Anonymous
Not applicable

Hi,

Have you tried having a conditional statement where you define the expressions. Something like if(SUPCAT = 'A', 0, 1)

kunkumnaveen
Specialist
Specialist
Author

please find the attachment