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
Anonymous
Not applicable

Need help with Calculated Column

Hi there,

 

 

I am creating a report in Power BI, Part of requirement I need to calculate sales by category like, wholesale, retail and franchise, 

I am using below formula . But it is not working

Error# Too many arguments were passed to the FILTER function. The maximum argument count for the function is 2

 

Calculated Column

Wholesale  = CALCULATE(SUM('Model'[Sales]), FILTER(ALL('Model'[ParentAccountID]), 'Model'[ParentAccountID] = "8411","4378", "121","2555")

1 ACCEPTED SOLUTION
Anonymous
Not applicable

 Below formula working, 

 

Wholesale = CALCULATE(
SUM('Model'[Sales]),
FILTER(
'Model',
'Model'[ParentAccountID] = "4378" ||
'Model'[ParentAccountID] = "8411" ||
'Model'[ParentAccountID] = "121"
)
)

View solution in original post

3 REPLIES 3
mattbrice
Solution Sage
Solution Sage

Try:

 

Wholesale =
CALCULATE (
    SUM ( 'Model'[Sales] ),
    FILTER (
        ALL ( 'Model'[ParentAccountID] ),
        'Model'[ParentAccountID] IN { 8411, 4378, 121, 2555 }
    )
)
Anonymous
Not applicable

Thanks for your answer @mattbrice

 

I'm getting following error

 

Function 'CONTAINSROW' does not support comparing values of type Integer with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values.

Anonymous
Not applicable

 Below formula working, 

 

Wholesale = CALCULATE(
SUM('Model'[Sales]),
FILTER(
'Model',
'Model'[ParentAccountID] = "4378" ||
'Model'[ParentAccountID] = "8411" ||
'Model'[ParentAccountID] = "121"
)
)

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.