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 table name called Leads data . this table have a two column
I am trying Create a measure called converts which is count of trail_id where converted_date column is populated
ID NO date
626238
626231 August 26,2021
636241
636564 August 28,2021
653234 August 29,2021
657634 August 30,2021
I want count of trail id where the converted Date populated .
Thanks in advance . looking for support .
Solved! Go to Solution.
or you can try:
converts = COUNTX( FILTER(Sheet1, NOT(ISBLANK(Sheet1[converted_date])) ) , COUNT([trail id])
@Anonymous is it worked? Do you need any help?
or you can try:
converts = COUNTX( FILTER(Sheet1, NOT(ISBLANK(Sheet1[converted_date])) ) , COUNT([trail id])