Hi @lucca_luna,
Great question. The cross-filtering issue you're hitting is because the dashboard treats separate datasets as independent. The workaround is to reshape your data so both date dimensions (creation and resolution) live in a single column. You can do this with a SQL view that uses UNION ALL to unpivot the two dates into an event_date column with an event_type discriminator ('Opened' vs 'Resolved'). That gives you one dataset, one X-axis, two lines, and cross-filtering stays intact.
If you also want reusable measures (similar to Power BI's semantic model), take a look at Metric Views in Unity Catalog. They let you define dimensions and measures once, then query them from any dashboard, Genie, or SQL query.
Your question actually inspired me to write a full walkthrough covering both approaches with a support ticket scenario here. I hope it helps you.
If this answer resolves your question, could you mark it as โAccept as Solutionโ? That helps other users quickly find the correct fix.
Regards,
Ashwin | Delivery Solution Architect @ Databricks
Helping you build and scale the Data Intelligence Platform.
***Opinions are my own***