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
warrencowan
Helper I
Helper I

DAX Calculate function, throws error when using calculated measure as filter

 
Hi all, I'm floundering with a calculate function, to sum ad spend, where the ROAS is less than X.
 
In this case, ad spend is a static column of data for each row,
and ROAS is a calculated measure, created from revenue/spend using the following formula. 
  • ROAS = if(iserror(sum('GA-Adwords Table'[Revenue (EUR)])/sum('GA-Adwords Table'[Ad spend (EUR)]))=true,0,sum('GA-Adwords Table'[Revenue (EUR)])/sum('GA-Adwords Table'[Ad spend (EUR)]))
However my calculate function....
  • NCS = CALCULATE(sum('GA-Adwords Table'[Ad Spend (EUR)]), [ROAS]<1)
throws the below error message.
  • A function 'CALCULATE' has been used in a True/False expression that is used as a table filter expression. This is not allowed.
Can anyone point to what I'm doing wrong.
 
Any help, critque or abuse for being daft, gratetfully appreciated.
1 ACCEPTED SOLUTION
v-sihou-msft
Employee
Employee

@warrencowan

 

As the error message said, in CALCULATE() function, the second parameter can be a True/False expression. You need to put a filted table context. So your formula should be like:

 

NCS =
CALCULATE (
    SUM ( 'GA-Adwords Table'[Ad Spend (EUR)] ),
    FILTER ( 'GA-Adwords Table', [ROAS] < 1 )
)

Regards,

 

View solution in original post

3 REPLIES 3
sibanez
Regular Visitor

I have this error:

 

"RUBRO_C16",IF(VALOR_SALUD_COL_IND[COD RAMO CONT FINAL] IN {"045","034"},CALCULATE(SUM(VALOR_SALUD_COL_IND[VALOR_CALCULADO]),
FILTER(VALOR_SALUD_COL_IND,VALOR_SALUD_COL_IND[COD RUBRO FINAL] = "C16" )),
CALCULATE((SUM(VALOR_SALUD_COL_IND[VALOR_CALCULADO])),
FILTER(VALOR_SALUD_COL_IND,VALOR_SALUD_COL_IND[COD RUBRO FINAL] = "C16" ))),

 

The True/False expression does not specify a column. Each True/False expressions used as a table filter expression must refer to exactly one column.

v-sihou-msft
Employee
Employee

@warrencowan

 

As the error message said, in CALCULATE() function, the second parameter can be a True/False expression. You need to put a filted table context. So your formula should be like:

 

NCS =
CALCULATE (
    SUM ( 'GA-Adwords Table'[Ad Spend (EUR)] ),
    FILTER ( 'GA-Adwords Table', [ROAS] < 1 )
)

Regards,

 

Anonymous
Not applicable

This solved my problem! thank you kindly!

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.