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
TD21
Helper II
Helper II

The expression contains multiple columns, but only a single column can be used in a True/False exp..

I would like to create a measure that sums daily total up to the day prior, and the measure [Date interval] is defined as:

[Date interval] = datediff (today(), 'Dates'[Date], day)

 

Forecast1 = SUMX('Dates',
    IF('Dates'[Date]=TODAY(),
        SUM('Sales'[TOTAL]),
    IF('Dates'[Date]=TODAY() + [Date Interval],
        CALCULATE(SUM('Sales'[TOTAL]),'Dates'[Date]= TODAY() + [Date Interval] - 1),
    0
)))
 
I get an error: "The expression contains multiple columns, but only a single column can be used in a True/False expression that is used as a table filter expression."
 
How do I fix the formula to specify yesterday's date (the section highlighted in red)?
1 ACCEPTED SOLUTION
XLBob
Resolver II
Resolver II

If I understand what you are trying to do correctly, you can try below

Forecast1 =CALCULATE ( SUM ( 'Sales'[TOTAL] ), 'Dates'[Date] <= MAX ( 'Dates'[Date] ) - 1 )
what this does is it sums up all sales[Total] value up to the day before.

 

Pasting some sample data will always help other people better understand what you are trying to do

View solution in original post

1 REPLY 1
XLBob
Resolver II
Resolver II

If I understand what you are trying to do correctly, you can try below

Forecast1 =CALCULATE ( SUM ( 'Sales'[TOTAL] ), 'Dates'[Date] <= MAX ( 'Dates'[Date] ) - 1 )
what this does is it sums up all sales[Total] value up to the day before.

 

Pasting some sample data will always help other people better understand what you are trying to do

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.