Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
sayadutt
Creator
Creator

Urgent: creating a scorecard

Hi Team,

I have a requirement where I need to publish a scorecard based on the values present in the fields. The values will be either  Yes, No, Not Applicable or empty. OR received, Not Received, Not Applicable and empty.

Data file is attached.

Now the scorecard should calculate the percentage of Yes and assign marks:

Marks:

4: If Yes is more than 90%

3: If Yes is more than 60% and less than 90%

2: If Yes is more than 30% and less than 60%

1: If Yes is less than 30%

scorecard should look like this:

Division ApplicationTest Case Sign OffTest Case PresentRequirement Sign OffProj. timelinesTest Plan Sign Off StatusTOTAL SCORE
100 4324316
4333213211
4444443217

** scores given in the table are just numbers (not calculated)

Can you please help me in deriving this scorecard.

Thanks in advance

1 Solution

Accepted Solutions
manishnarang
Partner - Creator
Partner - Creator

Check the attachment.

I have calculated “Yes %age for Project timelines”. You can formulate your logic of score over that like (if ($(=ProjTime) > 0.9 , 4, ……..) etc..

View solution in original post

6 Replies
jpenuliar
Partner - Specialist III
Partner - Specialist III

The community may be able to help you quicker if you attach your qv app

sayadutt
Creator
Creator
Author

Hi Jonathan,

I don't have any qv yet.

I uploaded the excel from where data will be loaded.

Thanks

manishnarang
Partner - Creator
Partner - Creator

Considering Division and Application as dimesions.

=count({$<[Project Timelines]={'Yes'}>} [Project Timelines]) / Count([Project Timelines])

This gives you the %age of Yes. you can make these variables and apply your score logic accordingly.

BTW, off topic, how do we copy and paste some code from QV here? I had to type every thing.

sayadutt
Creator
Creator
Author

Hi manish,

can you please attach the qv file itself here.

It will help me to understand.

Thanks

sayadutt
Creator
Creator
Author

Hi Team,

Can you please help me here.

Thanks

manishnarang
Partner - Creator
Partner - Creator

Check the attachment.

I have calculated “Yes %age for Project timelines”. You can formulate your logic of score over that like (if ($(=ProjTime) > 0.9 , 4, ……..) etc..