need help
275990 TopicsSyncing parameter of paginated report in desktop
Hi , I have the below attached filters which i need to sync and i have created parameters with creating separate data set for each parameter . The issue i am facing is while passing the parameter Metric_name in dektop with field metric_id_name then few ids are dropping . It is not passing the value and showing default All option . Metric_id_name has long text names. Metric Name is filter is working for only few ids . How can i write the parameter and query to take the exact name . or check metric id starting and see if the id is present in name . Metric_ID Metric_ID_Name MET-1509 MET-1509 - # Claims Outstanding >60 days (Receivable) MET-973 MET-973 - Compliance Risk Opinion MET-2486 MET-2486 - Outsourcing Oversight (Internal Outsourcing) MET-2488 MET-2488 - Outsourcing Oversight (Internal Outsourcing) MET-715 MET-715 - Sec Finance Income Claims Collection (>30 days) - (in millions) MET-2331 MET-2331 - PIMCO (MO) - # of impact incidents MET-1506 MET-1506 - Failed trades (for GT) MET-1037 MET-1037 - Billing Accuracy – percentage of monthly revenue - Traditional (prior prior month) MET-2603 MET-2603 - ICAMS All Incident Closure Timeliness MET-2141 MET-2141 - Failing Unit Trust and Physical Sell trades over 60 days old (Transition Settlement) Below is the Query Used on report Builder ="EVALUATE " & "VAR AsOfDate = DATE(" & Year(Parameters!SelAsOfDate.Value) & "," & Month(Parameters!SelAsOfDate.Value) & "," & Day(Parameters!SelAsOfDate.Value) & ") " & "VAR ReportedMids = CALCULATETABLE(" & "VALUES(KRI[Metric_ID]), " & "REMOVEFILTERS(KRI), " & "KRI[MetricsResults Breach Status Value] IN {""" & Join(Parameters!Breach_Status_Value.Value, """,""") & """}, " & "KRI[MetricsResults Metric Date] = AsOfDate" & ") " & "RETURN " & "SELECTCOLUMNS(" & "FILTER(" & "KRI," &"TRUE()" & IIF( UCase(Trim(Parameters!Period.Value & "")) = "3M" OR UCase(Trim(Parameters!Period.Value & "")) = "3 M", " && KRI[MetricsResults Metric Date] > EOMONTH(AsOfDate, -3) && KRI[MetricsResults Metric Date] <= AsOfDate", IIF( UCase(Trim(Parameters!Period.Value & "")) = "6M" OR UCase(Trim(Parameters!Period.Value & "")) = "6 M", " && KRI[MetricsResults Metric Date] > EOMONTH(AsOfDate, -6) && KRI[MetricsResults Metric Date] <= AsOfDate", IIF( UCase(Trim(Parameters!Period.Value & "")) = "YTD", " && KRI[MetricsResults Metric Date] >= DATE(YEAR(AsOfDate), 1, 1) && KRI[MetricsResults Metric Date] <= AsOfDate", "" ) ) )& IIF( InStr("," & Join(Parameters!Risk_unit_level1.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Risk_unit_level1.Value, ""))) = 0, "", " && (KRI[Risk_Unit_Level_1] IN {""" & Join(Parameters!Risk_unit_level1.Value, """,""") & """} || ISBLANK(KRI[Risk_Unit_Level_1]))" ) & IIF( InStr("," & Join(Parameters!Risk_Unit_level2.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Risk_Unit_level2.Value, ""))) = 0, "", " && KRI[Risk_Unit_Level_2] IN {""" & Join(Parameters!Risk_Unit_level2.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!Risk_Unit_Level3.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Risk_Unit_Level3.Value, ""))) = 0, "", " && KRI[Risk_Unit_Level_3] IN {""" & Join(Parameters!Risk_Unit_Level3.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!Classification.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Classification.Value, ""))) = 0, "", " && KRI[Metrics_KRI_Classification_Value] IN {""" & Join(Parameters!Classification.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!pEntityType.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!pEntityType.Value, ""))) = 0, "", " && KRI[MetricsEntity Type] IN {""" & Join(Parameters!pEntityType.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!pEntityName.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!pEntityName.Value, ""))) = 0, "", " && KRI[Metrics_Entity_ID_Name] IN {""" & Join(Parameters!pEntityName.Value, """,""") & """}" ) & IIF( Len(Code.CleanJoin(Parameters!Metric_Name.Value)) = 0, "", " && KRI[Metric_ID_Name] IN {""" & Code.CleanJoin(Parameters!Metric_Name.Value) & """}" ) & IIF( InStr("," & Join(Parameters!KRI_Result_Status.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!KRI_Result_Status.Value, ""))) = 0, "", " && KRI[MetricsResults Value Collection Status Value] IN {""" & Join(Parameters!KRI_Result_Status.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!Metric_Category_Group.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Metric_Category_Group.Value, ""))) = 0, "", " && KRI[Metric Category Group] IN {""" & Join(Parameters!Metric_Category_Group.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!Breach_Status_Value.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Breach_Status_Value.Value, ""))) = 0, "", " && KRI[Metric_ID] IN ReportedMids" ) & IIF( InStr("," & Join(Parameters!Region.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Region.Value, ""))) = 0, "", " && KRI[MetricsEntity_Region_Value] IN {""" & Join(Parameters!Region.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!Legal_Entity_Name.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Legal_Entity_Name.Value, ""))) = 0, "", " && KRI[Legal_Entity_Name] IN {""" & Join(Parameters!Legal_Entity_Name.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!business_or_corporate.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!business_or_corporate.Value, ""))) = 0, "", " && KRI[business_or_corporate] IN {""" & Join(Parameters!business_or_corporate.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!Level_2_Risk.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Level_2_Risk.Value, ""))) = 0, "", " && KRI[Level_2_Risk] IN {""" & Join(Parameters!Level_2_Risk.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!Level_3_Risk_Taxonomy.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Level_3_Risk_Taxonomy.Value, ""))) = 0, "", " && KRI[Operational_Risk_Level_3] IN {""" & Join(Parameters!Level_3_Risk_Taxonomy.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!Metrics_Measured_In_Value.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Metrics_Measured_In_Value.Value, ""))) = 0, "", " && KRI[Metrics_Measured_In_Value] IN {""" & Join(Parameters!Metrics_Measured_In_Value.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!Metrics_Measurement_Frequency_Value.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Metrics_Measurement_Frequency_Value.Value, ""))) = 0, "", " && KRI[Metrics_Measurement_Frequency_Value] IN {""" & Join(Parameters!Metrics_Measurement_Frequency_Value.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!MetricsResults_Arrears_Value.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!MetricsResults_Arrears_Value.Value, ""))) = 0, "", " && KRI[MetricsResults_Arrears_Value] IN {""" & Join(Parameters!MetricsResults_Arrears_Value.Value, """,""") & """}" )& IIF(InStr("," & Join(Parameters!Metrics_Included_in_Report_Value.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Metrics_Included_in_Report_Value.Value, ""))) = 0, "", " && KRI[Metrics_Included_in_Report_Value] IN {""" & Join(Parameters!Metrics_Included_in_Report_Value.Value, """,""") & """}" ) & IIF( InStr("," & Join(Parameters!Metrics_KRI_Reported_To_Value.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Metrics_KRI_Reported_To_Value.Value, ""))) = 0, ""," && KRI[Metrics_KRI_Reported_To_Value] IN {""" & Join(Parameters!Metrics_KRI_Reported_To_Value.Value, """,""") & """}" )& IIF( InStr("," & Join(Parameters!Metrics_KRI_Escalated_To_Value.Value, ",") & ",", ",All,") > 0 OR Len(Trim(Join(Parameters!Metrics_KRI_Escalated_To_Value.Value, ""))) = 0, "", " && KRI[Metrics_KRI_Escalated_To_Value] IN {""" & Join(Parameters!Metrics_KRI_Escalated_To_Value.Value, """,""") & """}" ) & ")," & """MetricName"", KRI[MetricsResults_MetricName]," & """MetricDate"", KRI[MetricsResults Metric Date]," & """MetricMonthYear"", FORMAT(KRI[MetricsResults Metric Date], ""MMM YYYY"")," & """MetricMonthSort"", YEAR(KRI[MetricsResults Metric Date]) * 100 + MONTH(KRI[MetricsResults Metric Date])," & """RunDate"", KRI[RunDate]," & """Risk_Unit_L1"", KRI[Risk_Unit_Level_1]," & """Risk_Unit_L2"", KRI[Risk_Unit_Level_2]," & """Risk_Unit_L3"", KRI[Risk_Unit_Level_3]," & """Entity_Region"", KRI[MetricsEntity_Region_Value]," & """Legal_Entity"", KRI[Legal_Entity_Name]," & """Buisness_or_Corporate"", KRI[business_or_corporate]," & """Level_2_Risk"", KRI[Level_2_Risk]," & """Ops_risk_Level_3"", KRI[Operational_Risk_Level_3]," & """MetricsResults_Arrears_Value"", KRI[MetricsResults_Arrears_Value]," & """MetricsMeasuredIn_Value"", KRI[Metrics_Measured_In_Value]," & """Metrics_Measurement_Frequency"", KRI[Metrics_Measurement_Frequency_Value]," & """Metrics_Included_in ReportValue"", KRI[Metrics_Included_in_Report_Value]," & """Metrics_Included_Report_Value"", KRI[Metrics_Included_in_Report_Value]," & """Metric_KRI_Escalated_To_Value"", KRI[Metrics_KRI_Escalated_To_Value]," & """ReportedValue"", KRI[Reported_Metric_value_Formatted]," & """Metric_Entity_ID_Name"", KRI[Metrics_Entity_ID_Name]," & """Metric_Entity_Type"", KRI[MetricsEntity Type]," & """Metric_Collection_Status"", KRI[MetricsResults Value Collection Status Value]," & """Metric_Id_name"", KRI[Metric_ID_Name]," & """EntityName"", KRI[MetricsEntity Name]," & """Classification"", KRI[Metrics_KRI_Classification_Value]," & """Classification_short"", KRI[KRI_Class_Short]," & """BreachStatus"", KRI[MetricsResults Breach Status Value]," & """ThresholdAmber"", KRI[Treshold Amber]," & """ThresholdRed"", KRI[Treshold Red]," & """MetricID"", KRI[Metric_ID]," & """ReportingOrder"", KRI[Reporting_Order]," & """Action Plan"", KRI[MetricsResults Management Action]," & """Root Cause"", KRI[MetricsResults RootCause]," & """MetricCategoryGroup"", KRI[Metric Category Group]," & """ThresholdDisplay"", KRI[OPs_Thresholds_Display]" & ")"26Views1like1CommentARCGIS Visual Resets Upon Refresh
Hi Everyone, I have connected to ARCGIS to utilise the ARCGIS map visual. Once I have added my points, it looks like this: However, once I refresh the page, even after saving, all of my edits are reset to a blank map: How do I save my amendments? Cheers.47Views0likes2CommentsNon-aggregated matrix?
Ok - so I have an Income Statement I am trying to build. The data comes in from Snowflake, where all of the calculations are already done, including all the aggregations. Here is what I would like to do: have a hierarchy, but just display the values - no calculations. Everything I've tried so far does not work. So, in the sample data, all of the B items add up to the A, but that A value is already calculated in Snowflake. CURRENT PREVIOUS BUDGET A 1000 2000 1500 B 250 500 375 B 250 500 375 B 250 500 375 B 250 500 37539Views2likes2CommentsHow to Count Date Wise
Hi Team, I have data some thing like this : Date File 01/07/2026 134343434 74635577 24564675757 02/07/2026 45405645 325474699 97436487 7425742599 03/07/2026 12243434 2134 469359639 847564254 73796 04/07/2026 78874547 323435435 787546356 78567456747 05/07/2026 9808969 111232332 5666666 32323 4565636367 I need to take count of File as per Date like below : Date File 01/07/2026 3 02/07/2026 4 03/07/2026 5 04/07/2026 4 05/07/2026 5 But Power BI giving like this output : Please let me know how to get like this output : Date File 01/07/2026 3 02/07/2026 4 03/07/2026 5 04/07/2026 4 05/07/2026 548Views1like5CommentsBookmark navigator doubling up with custom style presets
I've encountered a bug with the bookmark navigator when developing custom styles: It seems somehow the bookmark is saving the style state when the bookmark is created, and trying to re-apply it to the navigator? The result is a very odd navigator which has two sets of buttons on top of each other, the correct current styles on top, and a second set below with the old styling. It's not immediately obvious this has happened - the second set of buttons appears in the padding area. If the navigator doesn't have bottom padding it won't appear, and with thin bottom padding it may look more like a second accent bar. Re-loading the theme JSON will reset the visuals, so there is no longer a second set of buttons. But activating the bookmarks again will bring them back. However, the style will reflect the style that was present in the previously loaded JSON, not the current one. I'm not sure if it is necessary to have a custom JSON file, or if it merely requires two styles that are not the default. I haven't yet been able to reproduce this with bookmarks affecting items with similar layout, such as the button slicer.50Views1like4CommentsLooks like we're unable to access the semantic model
Migrating from using an old semantic model to an updated semantic model. The new semantic model has all of the columns that reports are using from the old semantic model -- so no compatibility issues. Had successfully repointed several reports. After "successfully" repointing one report (report looked fine, interacting with it worked, published to the service), saving and closing, when I open it in Power BI Desktop I now get the message below. The Power BI refuses to open the report so I can't adjust anything at this point. Is there a way around this? The report on the service uses a semantic model that is in a different workspace, so there's no way to download the report. Is my only option to completely redevelop the report?74Views1like8CommentsIs there a way to change the text color for More options menu on visuals
Hello All, I've noticed in the most recent update in Power BI, the text color of the menu for More options is now grey which makes it difficult to read in Power BI desktop. When I publish to the service it looks just fine and the text is black. Is this an issue or is there a new setting I have to update in Power BI desktop?58Views1like5Comments