Forum Discussion

ishade's avatar
ishade
Regular Visitor
1 year ago
Solved

How can I get dynamic table using filtered data by slicer value on other table?

Hi I have two tables, 'customer' and 'rate'.  I want fill up 'rate' table with data of filtered 'customer' table, of which procedure is   1. Select a customer by slicer or filter ('10000' i...
  • Deku's avatar
    1 year ago

    Assume this is what you are looking for

     

    Var rate= 

    Calculate(

    Max( customer[rate] ),

    Treatas( values( rate[category], customer[category])

    )

    Return 

    If( not isblank( rate), rate, "")