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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Pbiuserr
Post Prodigy
Post Prodigy

Problem with syntax in ADDCOLUMNS with CALCULATE

Hello, 
I have a measure

VAR _table =
ADDCOLUMNS (
SUMMARIZE ( FctTable, FctTable[Gender], Fcttable[Category] ),
"@HC", [Percentage change headcount vLY]
)

and I struggle to make that table be only for Category = 1. Tried to insert here calculate but keep getting syntax errors. Is there a possibility to filter it out?
1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

please try the below.

 

VAR _table =
FILTER (
    ADDCOLUMNS (
        SUMMARIZE ( FctTable, FctTable[Gender], Fcttable[Category] ),
        "@HC", [Percentage change headcount vLY]
    ),
    Fcttable[Category] = 1
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi,

please try the below.

 

VAR _table =
FILTER (
    ADDCOLUMNS (
        SUMMARIZE ( FctTable, FctTable[Gender], Fcttable[Category] ),
        "@HC", [Percentage change headcount vLY]
    ),
    Fcttable[Category] = 1
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Thank you! works good
Can you perhaps help me how to retrive name with biggest [Percentage Change Headcount vLY] ?

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.