Hello FME community,
I have an issue I'm working on and can't seem to figure out the solution.
I have two Excel tables. One with different kinds of certifications and the score each is given.
Certification | Score |
---|---|
Certification_A | 1 |
Certification_B | 5 |
Certification_C | 7 |
The second one contains Applicants with fields defining the various certifications and links to said certification. One applicant can have multiple certifications. We need to determine for each applicant which is the highest scoring certification.
Applicant_ID | Certification_A | Cerification_B | Certification_C |
---|---|---|---|
1 | URL to file | ||
2 | URL to file | ||
3 | URL to file | URL to file |
In the second table I want to add the scores and then determine the highest score for each row (this i can do in a new field with the max(Value1, Value2 etc) function) and write out the applicant_id, the highest scoring certification name, it's URL and the score.
Can anyone give me some pointers how i can solve this case?
Thanks for any help,
Jeroen