Forum Discussion
Belindah
2 years agoFrequent Visitor
Power BI Report Help Please
Hi. I'm creating a Power BI report from a Teams List that I imported. The problem I'm having is I want to create a card that gives me the total number of Yes entries in a column that has a choice of ...
samratpbi
2 years agoSuper User
There are many options. Easiest option may be apply a filter on your card visual with column value = Yes. Or you may create a measure like below:
Count Y =
CALCULATE(
COUNT(T1[Y/N]),
T1[Y/N] = "Y"
)
If this resolves your provlem, then please mark it as Solution. Thanks
- Belindah2 years agoFrequent Visitor
Thank you! I will try first thing tomorrow and mark as solution if it works for me.