User Profile
GanesaMoorthyGM
Helper II
Joined 1 year ago
User Widgets
Contributions
- 140Views0likes0Comments
Request to Add additional Column in Power BI Matrix Visual
New Power BI Requirement Currently, in the Matrix visual: Countries are displayed as columns. Measures are displayed as rows using the "Show values on rows" option. Each measure (e.g., Sales, Ticket Size, Growth %, etc.) appears vertically, while countries appear horizontally across the top. Enhancement Required I would like to add an additional column named "EOA Total" in the Matrix visual. Expected Behavior Current Layout: Measure India UAE Singapore Malaysia Sales ... ... ... ... Ticket Size ... ... ... ... Growth % ... ... ... ... Required Layout: Measure India UAE Singapore Malaysia EOA Total Sales ... ... ... ... Total Ticket Size ... ... ... ... Total Growth % ... ... ... ... Total The EOA Total column should display the aggregated value across all EOA countries for each measure while retaining the existing country-wise columns. EOA is nothing but the Countries excluding US. so if we write as a measure we cant use measure field as column. So what can we do here. My sample measure: MTD Target (INR Lakhs) = VAR MaxSalesDate = CALCULATE( MAX ( 'fact_sales'[DateOnly] ), ALL ( 'fact_sales' ) ) VAR CurrentMonthNumber = MONTH ( MaxSalesDate ) VAR FiscalMonth = SWITCH ( TRUE (), CurrentMonthNumber = 4, 1, CurrentMonthNumber = 5, 2, CurrentMonthNumber = 6, 3, CurrentMonthNumber = 7, 4, CurrentMonthNumber = 8, 5, CurrentMonthNumber = 9, 6, CurrentMonthNumber = 10, 7, CurrentMonthNumber = 11, 8, CurrentMonthNumber = 12, 9, CurrentMonthNumber = 1, 10, CurrentMonthNumber = 2, 11, CurrentMonthNumber = 3, 12 ) VAR CurrentFYCode = IF ( CurrentMonthNumber >= 4, "FY" & RIGHT ( YEAR ( MaxSalesDate ) + 1, 2 ), "FY" & RIGHT ( YEAR ( MaxSalesDate ), 2 ) ) -- ✅ Check if target exists VAR TargetAvailable = CALCULATE ( COUNTROWS ( 'Clusterwise Overall Target' ), 'Clusterwise Overall Target'[FY] = CurrentFYCode, 'Clusterwise Overall Target'[MonthOrder] = FiscalMonth ) VAR RawTotal = IF ( TargetAvailable > 0, CALCULATE ( SUMX ( FILTER ( 'Clusterwise Overall Target', 'Clusterwise Overall Target'[FY] = CurrentFYCode && 'Clusterwise Overall Target'[MonthOrder] = FiscalMonth && 'Clusterwise Overall Target'[Country] IN { "UAE", "Oman", "Singapore", "Qatar","Kuwait", "Ecom", "US", "US E.comm" } ), VAR Country = 'Clusterwise Overall Target'[Country] VAR ConversionRate = SWITCH ( TRUE (), -- FY26 CurrentFYCode = "FY26" && Country IN { "US", "US E.comm" }, 86, CurrentFYCode = "FY26", 23, -- FY27 CurrentFYCode = "FY27" && Country IN { "US", "US E.comm" }, 90, -- FY27 non US CurrentFYCode = "FY27", 10 ) RETURN -- ✅ ✅ ONLY CHANGE: Cr → Lakhs ( 'Clusterwise Overall Target'[Target] * ConversionRate ) * 10 ) ) ) RETURN ROUND ( COALESCE ( RawTotal, 0 ), 1) Kindly help me fix this requirement.Solved529Views2likes5CommentsMatrix Alignment as per requirement change
Hi folks, Currently My matrix visual is like this As per the new requirement the alignment is expected like this And this will be further automated in power automate to send report as mail in outlook. Help me crack this layout Thank YouSolved428Views0likes5CommentsRe: Share % Measure Logic tweak help
I should not share the data btw. I'll share my current measures and how i did this. In Matrix Visual, Rows:Btq_Sale_age_Band Columns:MakingCharge_Percent_Band Values: Qty, Sales Measure: All Country MTD Qty MC Band Exclusion = VAR LastSalesDate = CALCULATE ( MAX ( fact_sales[DateOnly] ), ALL ( fact_sales ) ) VAR CurrentYear = YEAR ( LastSalesDate ) VAR CurrentMonth = MONTH ( LastSalesDate ) VAR TotalQty = CALCULATE ( SUM ( fact_sales[foc_qty] ), /* ✅ Country filter */ fact_sales[Country] IN { "UAE", "Qatar", "Oman", "Singapore", "US", "Kuwait" }, /* ✅ MTD logic */ YEAR ( fact_sales[DateOnly] ) = CurrentYear, MONTH ( fact_sales[DateOnly] ) = CurrentMonth, fact_sales[DateOnly] <= LastSalesDate, /* ✅ SAME EXCLUSIONS */ fact_sales[Cluster] <> "Gold_Coins", NOT fact_sales[Bin_Code] IN { "TEP", "GEP", "TEP SALE" }, NOT fact_sales[Pricing_type] IN { "Studded", "UCP", "BLANK","GOS" }, NOT ISBLANK ( fact_sales[Pricing_type] ), fact_sales[Product_Group] <> "Gold spare" ) RETURN COALESCE ( TotalQty, 0 ) All Country MTD Sales MC Band Exclusion = VAR LastSalesDate = CALCULATE ( MAX ( fact_sales[DateOnly] ), ALL ( fact_sales ) ) VAR CurrentYear = YEAR ( LastSalesDate ) VAR CurrentMonth = MONTH ( LastSalesDate ) VAR SalesAmount = CALCULATE ( SUMX ( fact_sales, SWITCH ( fact_sales[Country], "Qatar", fact_sales[UCP_QAR_INR], "Oman", fact_sales[UCP_OMR_INR], "Singapore", fact_sales[UCP_SGD_INR], "US", fact_sales[UCP_USD_INR], "UAE", fact_sales[UCP_AED_INR], "Kuwait", fact_sales[UCP_KDR_INR], 0 ) ), /* ✅ Country filter */ fact_sales[Country] IN { "UAE", "Qatar", "Oman", "Singapore", "US", "Kuwait" }, /* ✅ MTD logic */ YEAR ( fact_sales[DateOnly] ) = CurrentYear, MONTH ( fact_sales[DateOnly] ) = CurrentMonth, fact_sales[DateOnly] <= LastSalesDate, /* ✅ EXCLUSIONS – MATCH BUSINESS LOGIC EXACTLY */ -- Exclude ONLY Gold_Coins (keep BLANK/NULL) NOT fact_sales[Cluster] = "Gold_Coins", -- Exclude specific Bin Codes (keep BLANK) NOT fact_sales[Bin_Code] IN { "TEP", "GEP", "TEP SALE" }, -- Exclude Pricing Types + NULL NOT fact_sales[Pricing_type] IN { "Studded", "UCP", "BLANK", "GOS" }, NOT ISBLANK ( fact_sales[Pricing_type] ), -- Exclude Product Group fact_sales[Product_Group] <> "Gold spare" ) RETURN COALESCE ( ROUND ( SalesAmount / 10000000, 2 ), 0 ) For this i need share % as i mentioned earlier so for example here mc band <10% the btq age bad 0-30 days sale is 0.09 and the total sale in btq age band is 2.16 so 0.09/2.16 = 4% this is the logic. so i need your help in fixing this.786Views0likes0CommentsRe: Share % Measure Logic tweak help
Hi. Thanks for the quick response All Country MC Band Sales Share % = DIVIDE( [All Country MTD Sales MC Band Exclusion], CALCULATE( [All Country MTD Sales MC Band Exclusion], REMOVEFILTERS('fact_sales'[MakingCharge_Percent_Band]) ) )i used this this results in 100% for all901Views0likes2CommentsShare % Measure Logic tweak help
Hi guys, So i was in a new requirement of converting excel report into power bi and i somehow fixed the template and finished. excel template: Now i need your help in writing one particular measure so this is how my matrix look like so now my share contribution logic is See we have btq age band 0-30 days etc.. and with MC band at top like <10% etc.. so for example here mc band <10% the btq age bad 0-30 days sale is 0.09 and the total sale in btq age band is 2.16 so 0.09/2.16 = 4% this is the logic. so i need your help in fixing this. this is my sale measure name All Country MTD Sales MC Band Exclusion thank you.Solved916Views1like7CommentsPremium Per User VS Capacity VS Fabric? Limitations & Considerations.
Hi Folks, In my previous thread, I asked about embedding Power BI charts in Outlook using Power Automate. From the responses, I understood that this scenario is supported only with Premium Capacity, and not with a Premium Per User (PPU) license. Currently, I am using a Premium Per User account. Before considering an upgrade to Premium Capacity, I would like to better understand the limitations and trade-offs between: Premium Per User (PPU) Premium Capacity Microsoft Fabric capacity My concerns are: Even if we invest in Premium Capacity, are there still feature limitations (especially with Power Automate, email embedding, external sharing, etc.)? What are the key differences and considerations when choosing between PPU, Premium Capacity, and Fabric? From a cost vs functionality perspective, what scenarios truly justify upgrading from PPU to Capacity or Fabric? The goal is to avoid upgrading licenses unless it clearly solves the current limitations and aligns with future needs. Any insights, real-world experiences, or guidance would be greatly appreciated. Thanks in advance!SolvedRe: How to embed Power BI bar chart into an automated email using Power Automate? Premium needed?
Thanks MattiaFratello for your response, So if i have premium capacity then it is possible right? or once again we need to go for any power automate premium or in free version itself it is possible or not. Kindly let me know for my further progress640Views0likes2CommentsHow to embed Power BI bar chart into an automated email using Power Automate? Premium needed?
Hi everyone, I’m currently automating an email using Power Automate. My goal is to send: ✔️ An HTML table (already completed) ✔️ A bar chart from my Power BI report embedded directly in the email body I have Power BI Premium Per User, but only the free version of Power Automate. I’m stuck at the step where I need to add the bar chart to the email. From what I understand, this involves using Export to File for Power BI Reports → PNG. So my questions are: 1️⃣ Do we need a Power Automate Premium license to export a Power BI visual (PNG) and embed it in the email? 2️⃣ If yes, is there any workaround using PPU + PA Free? 3️⃣ What is the correct way to compose and attach a bar chart visual inside the email body? Thanks in advance for your help!Solved684Views0likes6Comments
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.