Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago

Custom visual Funnel plots

Hi experts,

Looking for your help here

We are trying to explore funnel plots for our reporting. We have created different DAX measures for population and occurance fields but when try to use it, it throws an error "Not enough Data Points for funnel plot"

We understand for funnel plots there should be atleast 10 data points, which we have in our data(32 cities).

here are the dax measures:

for Population - Total Sales = Sum(FactInternalSales[Sales])

for occurance - Supplier discount % (by city) =

var num = CALCULATE(SUM('FactInternalSales'[Discount]),FILTER('Supplier','Supplier'[Code] = "Y"),GROUPBY(Region,[City]))
var denom = CALCULATE(SUM(FactInternalSales'[Discount]),GROUPBY(Region,[City]))
return DIVIDE(num,denom)
This is to group the discount value by each city.
 
 

3 Replies