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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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"))