Forum Discussion

netanel's avatar
netanel
Icon for Post Prodigy rankPost Prodigy
4 years ago

Different filters on the same visual

Hey All!

 

I have a table where each column should be filtered differently
For example
column A will get the following filter: working, Forecast, 5 sites
column B will get the following filter: Ready, Forecast, 10 sites

Which DAX can I use?
Is there another better option than DAX?

I would appreciate your assistance!

 

 

 

4 Replies

  • netanel 

    Since you are trying filter on the same table but different columns, the records that get satisfied by filter will be returned. Please check the example below:

    CALCULATETABLE (
        'Product',
        'Product'[Color] IN {"Blue","Purple"},
        'Product'[Brand] IN {"Contoso","Fabricam"}
    )



    • netanel's avatar
      netanel
      Icon for Post Prodigy rankPost Prodigy

      Hey Fowmy 

       

      Calculatetable is Good butt Product is DIM 1
      I have more Diminsion

      Is it possible to make another DIM on the same Measure?

      • Fowmy's avatar
        Fowmy
        Icon for Super User rankSuper User

        netanel 

        Sorry, could you expalin with some data along with the expected results to better understand your question ?