Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Currently I have three parameters that I want to use - Point of Sales, Sales channel, and Payment method. When I use them all as parameters the report never loads, which might be due to the amount of data needing to be processed for each parameters.
I wanted to try to not have cascading parameters (to not let the parameters filter eachother) - but how do I go about that?
There only seems to be tutorials outlining how to add cascading parameters, not how to remove them...
Hi @Anonymous ,
Check the document.
Best Regards,
Jay
If it helps, below is the Query in Report Builder. The bold part are the parameters that I DO NOT want to be cascading although they seem to be.
"DEFINE VAR vFromExportDatumFullDate1 = IF(PATHLENGTH(@FromExportDatumFullDate) = 1, IF(@FromExportDatumFullDate <> "", @FromExportDatumFullDate, BLANK()), IF(PATHITEM(@FromExportDatumFullDate, 2) <> "", PATHITEM(@FromExportDatumFullDate, 2), BLANK()))
VAR vFromExportDatumFullDate1ALL = PATHLENGTH(@FromExportDatumFullDate) > 1 && PATHITEM(@FromExportDatumFullDate, 1, 1) < 1
VAR vToExportDatumFullDate1 = IF(PATHLENGTH(@ToExportDatumFullDate) = 1, IF(@ToExportDatumFullDate <> "", @ToExportDatumFullDate, BLANK()), IF(PATHITEM(@ToExportDatumFullDate, 2) <> "", PATHITEM(@ToExportDatumFullDate, 2), BLANK()))
VAR vToExportDatumFullDate1ALL = PATHLENGTH(@ToExportDatumFullDate) > 1 && PATHITEM(@ToExportDatumFullDate, 1, 1) < 1
EVALUATE SUMMARIZECOLUMNS('Försäljningskanal'[Kategori], 'DimFörsäljningsställe'[Försäljningsställe], 'Betalsatt'[BetalGrupp], 'DimFörsäljare'[Namn], FILTER(VALUES('ExportDatum'[FullDate]), (vFromExportDatumFullDate1ALL || 'ExportDatum'[FullDate] >= DATEVALUE(vFromExportDatumFullDate1) + TIMEVALUE(vFromExportDatumFullDate1)) && (vToExportDatumFullDate1ALL || 'ExportDatum'[FullDate] <= DATEVALUE(vToExportDatumFullDate1) + TIMEVALUE(vToExportDatumFullDate1))), RSCustomDaxFilter(@FörsäljningskanalKategori,EqualToCondition,[Försäljningskanal].[Kategori],String), RSCustomDaxFilter(@DimFörsäljningsställeFörsäljningsställe,EqualToCondition,[DimFörsäljningsställe].[Försäljningsställe],String), RSCustomDaxFilter(@BetalsattBetalGrupp,EqualToCondition,[Betalsatt].[BetalGrupp],String), "Antal_Betalning", [Antal_Betalning], "SUM_BetalningExMomsfritt", [SUM_BetalningExMomsfritt], "SUM_BetalningBelopp", [SUM_BetalningBelopp], "SUM_Momsfri", [SUM_Momsfri], "SUM_BetalningMoms", [SUM_BetalningMoms])"
I've checked those resources, is there anyone in particular you could direct me to?
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
38 | |
27 | |
17 | |
17 | |
8 |
User | Count |
---|---|
45 | |
38 | |
34 | |
17 | |
16 |