The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have a measure which I'm having issues getting to do what I want it to
DEV - # Days Taken to Reach Closed Won for a New MQL =
VAR __dates_table =
ADDCOLUMNS (
SUMMARIZE ( fact_pipeline_events, fact_pipeline_events[pipeline_journey_id] ),
"@latest_event_date_new_mql",
CALCULATE (
MAX ( fact_pipeline_events[event_date] ),
ALLEXCEPT ( fact_pipeline_events, fact_pipeline_events[pipeline_journey_id] ),
fact_pipeline_events[total_new_mql_events] > 0
),
"@earlist_event_date_closed_won",
CALCULATE (
MIN ( fact_pipeline_events[event_date] ),
ALLEXCEPT ( fact_pipeline_events, fact_pipeline_events[pipeline_journey_id] ),
dim_pipeline_event[stage_name] = "Closed Won"
)
)
VAR __filtered_dates_table =
FILTER (
__dates_table,
NOT ( ISBLANK ( [@latest_event_date_new_mql] ) )
&& NOT ( ISBLANK ( [@earlist_event_date_closed_won] ) )
)
VAR __date_diff_table =
ADDCOLUMNS (
__filtered_dates_table,
"@date_diff", DATEDIFF ( [@latest_event_date_new_mql], [@earlist_event_date_closed_won], DAY )
)
VAR __result =
AVERAGEX ( __date_diff_table, [@date_diff] )
RETURN
__result
Returns...
But this is not what I want to achieve - what I would like is to show the average days taken for an MQL to convert to Closed Won and only have that value show against the month (or date, week, quarter, year - just happen to have month from my date table in this visual) in which the MQL was created. So we can answer the question
Of the MQL's created in month X what was the average time taken to convert to Closed Won?
The edited screenshot below shows what I would like to achieve.
User | Count |
---|---|
28 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
12 | |
9 | |
7 |