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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply

DAX ISSSUBTOTAL Evaluate Issue

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
H

Thanks,

Harry

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @HarsimranPWRBI 

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  Datanaut

 

View solution in original post

1 REPLY 1
AlB
Super User
Super User

Hi @HarsimranPWRBI 

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  Datanaut

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors