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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I'm trying to evaluate below query but getting error "Query(22,48) Column "Category" cannot be found or may not be used in this expression".
Let me know if i'm missing something.
DEFINE
VAR table1 =
UNION (
ROW ( "Cateogry", "A", "Value", INT ( 1 ) ),
ROW ( "Cateogry", "A", "Value", INT ( 2 ) ),
ROW ( "Cateogry", "A", "Value", INT ( 3 ) ),
ROW ( "Cateogry", "B", "Value", INT ( 4 ) ),
ROW ( "Cateogry", "B", "Value", INT ( 5 ) ),
ROW ( "Cateogry", "C", "Value", INT ( 6 ) ),
ROW ( "Cateogry", "c", "Value", INT ( 7 ) )
)
--EVALUATE table1
VAR H =
SUMMARIZE (
table1,
ROLLUP ( [Cateogry] ),
"Sum of Value", SUMX ( table1, [Value] ),
"Max of Value", MAXX ( table1, [Value] ),
"Average of Value", FIXED ( AVERAGEX ( table1, [Value] ), 1 ),
"Is Category Subtotal", ISSUBTOTAL([Category])
)
EVALUATE
HThanks,
Harry
Solved! Go to Solution.
You have Category instead of Cateogry (which you use to build the table). And that's what the error message complains about. Let me know if there are other things not working after updating that.
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers ![]()
You have Category instead of Cateogry (which you use to build the table). And that's what the error message complains about. Let me know if there are other things not working after updating that.
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers ![]()
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 9 | |
| 8 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 20 | |
| 20 | |
| 17 | |
| 14 | |
| 14 |