Forum Discussion

netanel's avatar
netanel
Post Prodigy
4 years ago
Solved

Filters

Hey All! I have a problem I know it is common but I have not found the solution out there I have two columns of Amount & Budget  I need to display both in one table The problem is that Amount is...
  • netanel's avatar
    netanel
    4 years ago

    Samarth_18 

    Sorry for the mess
    I found the logic

    Net USD AVG for Budget =
    CALCULATE(
        [Net USD AVG],
        'DB 2022'[Data Source] IN { "Budget 2022" , "Budget 2021","Budget 2020" }
    )
     
    This way i take all the years
     
    Net USD AVG for YES =
    CALCULATE(
        [Net USD AVG],
        'DB 2022'[BI Platform] IN { "YES" })
     
    and in this way i take allso the "Yes" filter
     
    Thanks for halping