I have Power BI report that takes more than 10 seconds to fully load each time it is filtered via slicers. The report has a table visual with many columns each using Measures.
My understanding is that an SSAS cube could help because all the calculations are then done in SQL Server and a Power BI report would simply need to access a resultant table or stored procedure allowing SQL Server to do all the heavy calculations.
My thought on this is that by replicating the Power BI data model in SQL Server, I could create a stored procedure with appropriate parameters, which would allow for the dynamic filtering. The challenge is that DAX cannot retrieve this stored procedure each time a user changes the slicer options.
I need some help in solving this challenge, hope you can help!