Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can you hide a column in a list box. I've got two columns the second is an expression, I would like to hide the first one.
Rgds
Graham
I do not think in a List Box that (A Straight Table or Table box cell look alike) is possible.
In List box we can only enable horizontal Cell border.
Hi,
Can you post Example,
Regards
Hi,
I dont understand a requirement but can you ask for hiding any list box then go to layout properties and load condinally
can you explain more.
Hope this helps
Thanks & Regards
I think the answer is 'No'. BUT did you know that if you scroll to the bottom of the field list in the the List Box properties then you can select <expression> and input an expression directly?
I saw that, the problem is my expression is based on the first columns information.
May be you are trying to show something like Sum(Amt) against a dimension. And you don't want the dimension values to be visible. If so, you might not need a dimension/field. You can write your expression, something like:
=Aggr(Sum(Amt), Yourdimension)
Hope this helps.
Hi Graham,
This isn't possible. Maybe you try with a Straight Table. See my example.
Best Regards.
Hi Fernando,
I've got a field (Departments) I'm trying to show but it has to be sorted in a particluar order. I'm using the RowNo() expression but this only works if the Departments field is already there.
Any ideas?
Rgds
Graham
Have you tried expression like:
=Aggr(RowNo(), Departments)
?
Add: This would not require Departments to be there. You can use this expression directly as expression instead of a field.