Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

where clause in expression


Hi,

I want to get field value based on filter criteria.

ex: field1value='A',get me field2

Earlier i used set analysis to get count

count({$<Type={'DUPLICATION'}>}ID

Now i want just value of other field.if its of type duplication

Regards,

Prajna

10 Replies
MK_QSL
MVP
MVP

Can you provide some sample data?

Not applicable
Author

Type                        Number

Establish                     23

Testing                         4

Duplication                    45

Duplication                    55

i want to shpw only duplication -number

Regards,

Prajna

MK_QSL
MVP
MVP

Temp:

Load * Inline

[

Type,                        Number

Establish,                     23

Testing,                       4

Duplication,                    45

Duplication,                    55

];

Join

Load Type, COUNT(Number) as Flag Resident Temp Group By Type;

NoConcatenate

Final:

Load * Resident Temp where Flag >1;

Drop Table Temp;

Not applicable
Author

I want to achieve in expression.

I want to display number for type ='Duplication'

Regards,

Prajna

MK_QSL
MVP
MVP

Create a text box and type below...

=CONCAT(IF(Type = 'Duplication',Number),', ')

Not applicable
Author

its giving me wrong data.

I have a table which holds type and number.

Regards,

prajna

Anonymous
Not applicable
Author

do you want to show Number field of Duplication type??

if yes,then you can refer the attached QVW for work around.

Hope it helps.

Not applicable
Author

I want to show in bar chart . I have other dimesnions as well like clender values .Amount

Regards,

Prajna

MK_QSL
MVP
MVP

Can you provide us more sample data. It would be good idea rather than just guessing what you want.

Thanks..