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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
warrencowan
Kudo Collector
Kudo Collector

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
Microsoft Employee
Microsoft 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
Microsoft Employee
Microsoft 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
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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