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

Restricting Dimensional Items Dsiplay

Hi

   Appreciate very much if you could help me as I am new for QV.

In the attached Dashboard "Workers Incident DB",

1. Under the Caption "Gender", The "Undefined" should not be displayed (only female and male to be displayed). Appreciate if you could let me know how I could do that at the Report level and ETL level.

2. Under "Incident By Category", please let me know how I could display only "LTI" & "MTI" only at Report level.

Thanks

Flavian

1 Solution

Accepted Solutions
jagan
Luminary Alumni
Luminary Alumni

Hi,

In script filter the Undefined records by using where condition in script like below

LOAD Service,

     [Type Of Employment],

     Age,

     Gender,

     SAC,

     [Incident Type],

     [First Name],

     Surname,

     [Type of Worker],

     [Type of Incident],

     Harm,

     [Injured Workers Manager],

     [Incident Date],

     [Incident Category]

FROM

(biff, embedded labels, table is Sheet1$)

WHERE Gender <> 'Undefined';

For displaying 'LTI' and 'MTI' categories use below expression

=Count({<[Incident Category]={'LTI','MTI'}>} Surname)


Hope this helps you.


Regards,

Jagan.



View solution in original post

5 Replies
Not applicable
Author

Hi,

1. There are nulls in your gender field, thus undefiined is coming.

2. use count({<[Incident Category]={'LTI','MTI'}>}Surname) in epression of Incident in category.

Regards,

Navdeep

Anonymous
Not applicable
Author

Hey,

here it is .

PFA..

BR,

Chinna

jagan
Luminary Alumni
Luminary Alumni

Hi,

In script filter the Undefined records by using where condition in script like below

LOAD Service,

     [Type Of Employment],

     Age,

     Gender,

     SAC,

     [Incident Type],

     [First Name],

     Surname,

     [Type of Worker],

     [Type of Incident],

     Harm,

     [Injured Workers Manager],

     [Incident Date],

     [Incident Category]

FROM

(biff, embedded labels, table is Sheet1$)

WHERE Gender <> 'Undefined';

For displaying 'LTI' and 'MTI' categories use below expression

=Count({<[Incident Category]={'LTI','MTI'}>} Surname)


Hope this helps you.


Regards,

Jagan.



Not applicable
Author

Hi

Thanks very much.

Please let me know for example, for the "Harmful Injuries" chart, How to put a Benchmark/Traget line.

For eample, if "No. of Harmful Incidents" Target is = 60

Thanks

Flavian

Anonymous
Not applicable
Author

Hi,

Add a referece line either static or based on your crieteria.

PFA

BR,

Chinna