Forum Discussion

Carina's avatar
Carina
New Member
9 years ago
Solved

Show Funnel Visualization Data in a seperate Table

Hi,   I created a funnel for my report that works with different filters and entry points.    My challenge now is that I do not only want to show the visualization but also the underlying data / ...
  • Anonymous's avatar
    Anonymous
    9 years ago

    Carina,

    You would need to calculate percentage of first and percentage of before using DAX, then create table visual to show these values. There is an example for your reference.

    Percent of First = Table3[Amount]/CALCULATE(SUM(Table3[Amount]),FILTER(Table3,Table3[Index]=1))
    Previous = CALCULATE(SUM(Table3[Amount]),FILTER(Table3,Table3[Index]=EARLIER(Table3[Index])-1))
    Percent of Previous = IF(ISBLANK(Table3[Previous]),0, Table3[Amount]/Table3[Previous])



    Regards,
    Lydia