@Bendik Nag
Thank for the quick response. I am trying to help you to my best! Please correct me if needed.
Did you try using a combination of let
statements and dynamic
arrays?
let ViewSelect = dashboard_parameter('ViewSelect');
let seq = dynamic([ViewSelect]);
let FunnelStartDate = ago(1d);
let FunnelEndDate = now();
pageViews
| extend timestamp = ingestion_time()
| where timestamp between (FunnelStartDate .. FunnelEndDate) and isnotempty(user_AuthenticatedId)
| evaluate funnel_sequence(session_Id, timestamp, FunnelStartDate, FunnelEndDate, 10m, 365d, name, seq)
| order by dcount desc
| project-away samples, timestamp