-
-
Save jayantkodwani/207ea487715f364260f0d9ad29da4c5a to your computer and use it in GitHub Desktop.
DAX Code to create single column for sentiments
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Overall Sentiment = IF(Responses[Sentiment.positive]=1,"Positive",IF(Responses[Sentiment.neutral]=1,"Neutral",IF(Responses[Sentiment.negative]=1,"Negative","NA"))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment