Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have column like status1 snd status2. These column contains true or false.
i am getting count in difficult from column values like true or false.
How to achieve and get the exact count.
Sample data and Epected OUTPUT as mentioned below.
Solved! Go to Solution.
@saivina2920 , Create two measures like
counrows(filter(Table, Table[Status1] =True()))
and
counrows(filter(Table, Table[Status2] =True()))
if they are boolean then
counrows(filter(Table, Table[Status1] ="TRUE"))
and
counrows(filter(Table, Table[Status2] ="TRUE"))
@saivina2920 , Create two measures like
counrows(filter(Table, Table[Status1] =True()))
and
counrows(filter(Table, Table[Status2] =True()))
if they are boolean then
counrows(filter(Table, Table[Status1] ="TRUE"))
and
counrows(filter(Table, Table[Status2] ="TRUE"))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.