Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Markzolotoy
Impactful Individual
Impactful Individual

DAX - Queries don run

I am learning DAX by reading "The definitive Guide to DAX". So I am typing in the following command:

COUNTROWS(VALUES('TABLENAME'[COLUMNNAME]) and get that query completed with errors. CAn someone tell what the problem is?

 

Thanks

 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@Markzolotoy 

I believe you are using DAX Studio,. To run a measure, wrap it in curly brackets:

EVALUATE
 COUNTROWS(VALUES('test_ptsd'[payor_name])) }



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

3 REPLIES 3
Fowmy
Super User
Super User

@Markzolotoy 

I believe you are using DAX Studio,. To run a measure, wrap it in curly brackets:

EVALUATE
 COUNTROWS(VALUES('test_ptsd'[payor_name])) }



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Fowmy
Super User
Super User

@Markzolotoy 

Missing the last bracket. Make sure you are creating a New Measure

COUNTROWS( VALUES('TABLENAME'[COLUMNNAME]) )

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Markzolotoy
Impactful Individual
Impactful Individual

@Fowmy This is for real data:

 COUNTROWS(VALUES('test_ptsd'[payor_name]))

result:

Markzolotoy_0-1621843483950.png

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors