Home > Mobile >  Power BI - How do I get a COUNT of how many Customers have selected "Dairy Milk"?
Power BI - How do I get a COUNT of how many Customers have selected "Dairy Milk"?

Time:10-07

My data looks like :-

İmage_1

After changes, Your table will look like this:

FER

Then Write this simple DAX Code:

CountOfSelection = 
COUNT(Preference[customer])

If you test it:

FGD

You need to filter the blank row not to show its values if you prefer using filters pane, see below picture:

DFG

  • Related