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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Barnee
Advocate IV
Advocate IV

Average per Category that ignores slicers for that exact category

Hi!
I would need some help with the following situation which I have trouble solving.

 

I'd like to create an average per category in a measure that ignores slicer selection for the same category.

 

I tried by using ALL function, but it has an effect on the VALUES part of the measure as well.

Total Session by Campaign = 
CALCULATE(
AVERAGEX(
	KEEPFILTERS(VALUES('Analytics'[Campaign])),
	CALCULATE([Total Sessions])
), ALL('Analytics'[Campaign])
)

I possible, I would need to solve this inside the measure since I can't disable visual interactions in this use-case.
Thanks in advance and reach out if any more detail is needed.

Barna


1 ACCEPTED SOLUTION

Hi @Barnee ,

Please update the formula of your measure "Total Sessions average per Campaign for all the campaigns" as below:

Total Sessions average per Campaign for all the campaigns = AVERAGEX(ALL(sampledata[Campaign]),[Total Sessions])

update measure with all.JPG

I updated it in your sample file, you can get the file from this link.

Best Regards

Rena

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

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@Barnee , you are using keep filter and all on same field

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

hi @amitchandak 

here is the link where you can find the pbix

Hi @Barnee ,

Please update the formula of your measure "Total Sessions average per Campaign for all the campaigns" as below:

Total Sessions average per Campaign for all the campaigns = AVERAGEX(ALL(sampledata[Campaign]),[Total Sessions])

update measure with all.JPG

I updated it in your sample file, you can get the file from this link.

Best Regards

Rena

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

thanks, @v-yiruan-msft ! I see now

Barna

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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