Forum Discussion

leekohr's avatar
leekohr
Microsoft Employee
3 years ago

DAX Table for Funnel chart

I’m trying to create a Funnel Chart.  I’m looking to sum all the funding sources for a project to create grand total that I can use at the top of a funnel chart.

I would like to create a table using DAX that returns the following table with an additional row with the grand total.

Funding source Name

Funding Amount

 

Here is a diagram of my data.

 

 

I tried to follow this sample, but I think I need to relate DimFunding in some way.

Table = UNION(SUMMARIZE(Table1,"Product","Total","Quantity",SUM(Table1[Quantity])),Table1)

2 Replies