Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Product Trending Dashboard.

I'm currently trying to create a dashboard to highlight volume of tickets that have been raised today for a product. If the volume is higher than the average daily volume then it displays this on a chart.

 

Using 3 measures:

 

INC_Average_Submitted = 
AVERAGEX(
	VALUES('DimDate'[Date]),
	CALCULATE(COUNTA('DimTable'[Product Name]))
)
INC_Submitted = 
CALCULATE (
    COUNT('DimTable'[Product Name]),
    DimDate[Date] = Today()
)
INC_Flag = 
    IF ('DimTable'[INC_Submitted] > 'DimTable'[INC_Average_Submitted], 1, 0)

 

 

I am able to produce a table to highlight the products. However the issue I'm facing is when trying to output the actual ticket references it's returning all values and not those filtered by the above.

 

How do I amend this to only show tickets that were flagged.

Capture.PNG

2 REPLIES 2
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please give us an example of the data used in your formula.

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , put a visual level filter INC flag <>0

or try this Measure like

INC_Flag =
calculate( IF ('DimTable'[INC_Submitted] > 'DimTable'[INC_Average_Submitted], 1, 0), filter('DimTable','DimTable'[INC_Submitted]>'DimTable'[INC_Average_Submitted]))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.