Forum Discussion
Ayupchap
8 years agoHelper III
Comparing a result to another
OK this is a little difficult for me to explain but I shall do my best. I have linked to a database as mysource and using POwerBI to carry out my dashboards, so far this is going excellent. I am...
- 8 years ago
You need to add a custom column with the following statement (alter based on your field names):
if [Correct Answer] = [Student Answer] then "Correct" else "Incorrect"
Your end result will look something like this:
drewlewis15
8 years agoSolution Specialist
You need to add a custom column with the following statement (alter based on your field names):
if [Correct Answer] = [Student Answer] then "Correct" else "Incorrect"
Your end result will look something like this:
- Ayupchap8 years agoHelper III
Oh this is great, thanks so much!