Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Ciara
Creator
Creator

Scoring Matrix

I might be over complicating something that could be super easy but can't seem to figure out how to do it.

I want to create a scoring matrix for new entries into a dictionary.

I have created 8 different criteria and if the condition is met I give it a value of 1 otherwise its given 0.  Like below:

              If(IsNull(ProviderTitle), 0, 1) as ProviderTitleScore,

              If(IsNull(ProviderType), 0, 1) as ProviderTypeScore,

              If(WildMatch(ProviderName, '*,*'), 1, 0) as ProviderNameScore.................. etc

What I'm looking to do is to sum all 8 'scores' together and have an overall score for each Provider.

Any help is appreciated.

Thanks

Ciara

1 Solution

Accepted Solutions
dplr-rn
Partner - Master III
Partner - Master III

maybe i am not getting the core of the issue.

why not ProviderTitleScore+ProviderTypeScore+ProviderNameScore+..... etc.

?

View solution in original post

2 Replies
dplr-rn
Partner - Master III
Partner - Master III

maybe i am not getting the core of the issue.

why not ProviderTitleScore+ProviderTypeScore+ProviderNameScore+..... etc.

?

Ciara
Creator
Creator
Author

Oh my goodness.......I did something very stupid and had my syntax wrong and it kept giving me an error 🙈

It's been a looooooooooooong lockdown so far 😂

Thanks Dilipranjith.  Apologies for my silly question.