Forum Discussion
Total sum based on values
Hi all,
I guess this is pretty basic for most, but I cant seem to figure it our. I have an Excell file imported in Power BI. The value in a collumn is either "Yes", "No" or empty. Now I want to create the visual in which it gives the total sum of the "yes, another with the total sum of "No" and the last with the total number of empty.
How do I do this?
- Anonymous6 years ago
Hi Reimer ,
You can create calculated columns as mentioned above.
Another single work around is using visual filter.
For example:
And negi007 mentioned, you can use IF() function to create calculated column.
Let us know if you need more help.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
8 Replies
- ryan_mayuSuper User
You can create three measures
numberofempty = COUNTAX(FILTER('Table','Table'[Column1]=""),'Table'[Column1])numberofno = COUNTAX(FILTER('Table','Table'[Column1]="No"),'Table'[Column1])numberofyes = COUNTAX(FILTER('Table','Table'[Column1]="Yes"),'Table'[Column1]) - amitchandakSuper User
Reimer ,
Sum yes = calculate(countrows(Table),Table[columns]="Yes")
Sum No = calculate(countrows(Table),Table[columns]="No")
Sum Blank = calculate(countrows(Table),isblank(Table[columns])) - RichardJResponsive Resident
Hi Reimer
One method would be to 'Replace Values' of the null (empty) cells during the import.
Once you have the Excel data in the Power BI file, click on Transform Data
Then choose the 'Replace Values' option
and replace the 'null' values with something meaningful (e.g. 'No Decision' or you could use 'Blank' instead)
You can then create the charts/visuals as shown.
Hope this answers your question.
If you could let me know i'd appreciate it.
Cheers,
Richard
- negi007Community Champion
Reimer Here you will be required to create 3 calculated measures
1. to Calculated number of "Yes"
Yes_Count = CALCULATE(COUNTA('Yes/No'[Column]),'Yes/No'[Column]="Yes")2. to Calculated number of "No"
No_Count = CALCULATE(COUNTA('Yes/No'[Column]),'Yes/No'[Column]="No")3. to Calculated number of Empty records
Empty_Count = CALCULATE(COUNTA('Yes/No'[Column]),'Yes/No'[Column]="") - AnonymousNot applicable
Hi Reimer ,
You can create calculated columns as mentioned above.
Another single work around is using visual filter.
For example:
And negi007 mentioned, you can use IF() function to create calculated column.
Let us know if you need more help.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.