Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago

Creating funnel charts from data with different dates

I was recently asked to create a funnel chart for the below scenario:

ToDo Items --> Applications --> Approved --> Funded 

 

There can 1 or more 'ToDo Items' for one application.

Each item has a 'Item Created Date' and each application has a 'App Submitted Date'.

 

Below is the measure I created for 'ToDo Items' but I am unable to create a funnel due different dates being associated with different columns.

 

ToDo Items = CALCULATE([Total Items], FILTER('Table',
'Table'[CreatedDate] >= MIN(dCalender[Date]) && 'Table'[CreatedDate] <= MAX(dCalender[Date])
)) 

 

Also, below is a sample table structure of the data set.

 

 

ItemIdAppIdItem Created DateApp Submitted DateIsApprovedIsFunded
1111/1/201912/1/201810
2111/2/201912/1/201810
3111/3/201912/1/201810
4221/4/201912/2/201800
5221/5/201912/2/201800
6331/6/201912/10/201811
7441/7/201912/11/201810
8551/8/201912/12/201800
9661/9/201912/21/201811
10661/10/201912/21/201811

 

Can someone please help me create the measures for these metrics?

1 Reply

  • v-yuta-msft's avatar
    v-yuta-msft
    Community Support

    Anonymous ,

     

    Below is the measure I created for 'ToDo Items' but I am unable to create a funnel due different dates being associated with different columns.

     

    ToDo Items = CALCULATE([Total Items], FILTER('Table',
    'Table'[CreatedDate] >= MIN(dCalender[Date]) && 'Table'[CreatedDate] <= MAX(dCalender[Date])
    )) 


    Could you please clarify more details about "due different dates being associated with different columns"? If possible, could you also share the expected result table?

     

    Community Support Team _ Jimmy Tao

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.