Forum Discussion
Hide Blank Rows not whole result
- 1 year ago
Could you please provide me some sample data how your doing.
Hi kpct56591,
Coud you please try below measures
- Create new "MetricsName" table using "Enter Data" options.
- Create measures like "Case Spend" and "Total Case Spend" if not created
- Create a new measure like below
Matrix Value =
SWITCH(
SELECTEDVALUE(MetricsName[Metric Name]),
"Ship Qty", SUM('Sales_Data'[Ship Qty]),
"Gross Sales", SUM('Sales_Data'[Gross Sales]),
"Case Spend",
VAR v = SUM('Sales_Data'[Case Spend])
RETURN IF(ISBLANK(v), BLANK(), v),
"Total Case Spend",
VAR t = [Total Case Spend]
RETURN IF(ISBLANK(t), BLANK(), t)
)
3. Add the fileds as shown below and switch values to rows. Then uncheck the "Show items with no data".
Using above steps you will get required results.
Thanks,
If you found this solution helpful, please consider giving it a Like👍 and marking it as Accepted Solution✔. This helps improve visibility for others who may be encountering/facing same questions/issues.
Hello, this returned the following error:
- ajaybabuinturi1 year ago
Super User
Could you please provide me some sample data how your doing.
- v-aatheeque1 year ago
Community Support
Hi kpct56591 ,
we haven't heard back from you regarding our last response and wanted to check if your issue has been resolved.
If the response addressed by the community member for your query, please mark it as Accept Answer and click Yes if you found it helpful.
- v-aatheeque1 year ago
Community Support
Hi kpct56591 ,
we haven't heard back from you regarding our last response and wanted to check if your issue has been resolved.
If the response addressed by the community member for your query, please mark it as Accept Answer and click Yes if you found it helpful.
Thank You.