Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
If some one can answer this question and help me out, my life will become very very easy.
I have a list box which has values from 0 to 100
For my reporting purpose I just need values which are greater 15
If I use default list box then user has to always select values which are greater 15 manually every time.
Is there a way that I can make a list box which show values like this:
0
1
2
3
.
.
.
14
>=15
Plesae reply if there is any way or any other way/object which can handle this requirement.
Thanks,
TA
Mayil,
Thanks for your reply.
By using above expression I am getting the follwoing values in the listbox:
6, 7, 8, ....14, >=5<=15 and >=15
In fact I just want the following values in my list box:
0, 1, 2, 3, 4, <=5>=14, >=15
I would highly appreciate if you write a expression for these values.
Thanks in advance.
TA
Hi
Try this,
=if(test >= 5, '>=5<=14', if(test > 14, '>=15', test))
Hope it helps
if(FieldName <= 5, '>=5<=14', if(FieldName > 15, '>15', FieldName)
I am sorry its not.
Here is what I am getting here:
0, 1,2,3,4, >=5<=14
There is no value >=15
and If I select >=5<=14 result is not limited to 14 or less in fact it shows the reulst for more than 14 as well
if(FieldName < 5, FieldName,
if(FieldName >= 5 AND FieldName <= 15, '>=5<=15', '>15'))
Hi
try this..
if(FieldName < 5, FieldName,
if( FieldName <= 15, '>=5<=15', '>15'))
...
Now filter is shown correclty but Still the result is not coming out correctly.
Now I see the filters as
0,1,2,3,4, >=5<=14, >=15
but when I have slected >=5<=14 some values are shown which are more than 14 as well.
Any clue why?
Thanks,
Hi
Did you use in script or expression? If you did in expression, try this in script for that particular field..
You may be get answer as you expected
You mean before loading the data?
under the relveant table...right?
HI
Like this,
Load if(FieldName < 5, FieldName,if( FieldName <= 15, '>=5<=15', '>15')) as FieldName, *
from TableName;
Hope it helps